-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 993 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
40
41
42
43
{
"name": "nodejs-blog-tutorial",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha test --watch ./src --watch ./test",
"start": "node src/index.js",
"watch": "nodemon src/index.js --watch src"
},
"author": "",
"license": "ISC",
"dependencies": {
"@vue/cli": "^4.5.10",
"agenda": "^4.1.3",
"body-parser": "^1.19.0",
"config": "^3.3.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"faker": "^5.5.3",
"flat": "^5.0.2",
"google-auth-library": "^7.0.4",
"joi": "^17.3.0",
"module-alias": "^2.2.2",
"monk": "^7.3.2",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multiparty": "^4.2.2",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0"
},
"_moduleAliases": {
"@root": "./src",
"@db": "./src/db",
"@lib": "./src/lib"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.12"
}
}