-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 917 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
{
"name": "express-boilerplate",
"version": "1.0.0",
"description": "This is a boilerplate project used for starting new projects!",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --require test/setup.js",
"start": "node src/server.js",
"dev": "nodemon src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hskang135/Express-Boilerplate.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hskang135/Express-Boilerplate/issues"
},
"homepage": "https://github.com/hskang135/Express-Boilerplate#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.2",
"nodemon": "^1.19.4",
"supertest": "^4.0.2"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"morgan": "^1.9.1"
}
}