forked from jenniredfield/be-nc-news
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "backend-nc-news",
"version": "1.0.0",
"description": "Backend code for Northcoders News Sprint",
"main": "config.js",
"scripts": {
"test": "mocha spec/*.spec.js",
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint ./",
"lint.fix": "eslint --fix .",
"lint:check": "eslint .",
"prettier:check": "prettier --check . --config .prettierrc",
"prettier:fix": "prettier --write . --config .prettierrc",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"async": "^2.6.0",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"chance": "^1.0.13",
"cors": "^2.8.4",
"express": "^4.16.2",
"log4js": "^2.5.3",
"mocha": "^5.0.0",
"moment": "^2.20.1",
"mongoose": "^5.0.3",
"nodemon": "^1.14.12",
"path": "^0.12.7",
"supertest": "^3.0.0",
"underscore": "^1.8.3"
},
"engines": {
"node": "~12.0.0"
},
"devDependencies": {
"husky": "^8.0.0",
"eslint": "5.0.0",
"prettier": "^2.6.2"
}
}