-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 KB
/
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": "start-node",
"version": "1.0.0",
"description": "startup node project/web project started-kit",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon -e \".html|.css|.js\" --delay 2500ms app.js ",
"lint": "eslint . --fix --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laohanme/start-node.git"
},
"keywords": [
"start",
"nodejs",
"expressjs",
"javascript",
"angularjs"
],
"author": "laohan",
"license": "MIT",
"bugs": {
"url": "https://github.com/laohanme/start-node/issues"
},
"homepage": "https://github.com/laohanme/start-node#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"express": "^4.16.4",
"mongoose": "^5.10.7",
"pug": "^2.0.4",
"request": "^2.88.2",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-google": "^0.13.0",
"nodemon": "^2.0.4"
}
}