-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
42 lines (42 loc) · 937 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
{
"name": "node_workshop",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js",
"ui": "parcel ./sample_client/index.html --port 8000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lenmorld/node_workshop.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lenmorld/node_workshop/issues"
},
"homepage": "https://github.com/lenmorld/node_workshop#readme",
"dependencies": {
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.0.2",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongodb": "^3.5.5",
"nodemon": "^1.18.10",
"qs": "^6.9.4"
},
"nodemonConfig": {
"ignore": [
"users.json"
]
}
}