forked from 2019-2020-ps6/2019-2020-ps6-backend-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.06 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
43
44
45
{
"name": "2019-2020-ps6-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node app/index.js",
"dev": "./node_modules/.bin/nodemon app/index.js",
"lint": "./node_modules/.bin/eslint -c .eslintrc.js app/",
"lint:fix": "./node_modules/.bin/eslint -c .eslintrc.js app/ --fix"
},
"precommit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/windu02/2019-2020-ps6-backend"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/windu02/2019-2020-ps6-backend/issues"
},
"homepage": "https://github.com/windu02/2019-2020-ps6-backend#readme",
"dependencies": {
"body-parser": "1.19.0",
"cors": "2.8.5",
"express": "4.17.1",
"joi": "14.3.1",
"morgan": "1.9.1"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.20.0",
"nodemon": "2.0.2",
"pre-commit": "1.2.2"
},
"nodemonConfig": {
"ignore": [
"mocks/*"
]
}
}