-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 894 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"scripts": {
"dev": "nodemon",
"sass": "sass --watch static/css/style.scss static/css/style.css",
"build": "tsc && sass static/css/style.scss static/css/style.css",
"start": "node build/index.js"
},
"dependencies": {
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"google-auth-library": "^7.0.2",
"mongodb": "^3.6.4",
"sass": "^1.32.8",
"typescript": "^4.1.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/mongodb": "^3.6.8",
"@types/uuid": "^8.3.0",
"concurrently": "^6.0.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1"
},
"nodemonConfig": {
"watch": [
"src",
"controllers",
"models"
],
"ext": "ts,json,scss",
"ignore": [
"src/**/*.spec.ts"
],
"exec": "ts-node ./src/index.ts"
}
}