-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
46
{
"name": "northcoders_news_sprint",
"version": "1.0.0",
"description": "Full-stack project to present reddit-style northcoders news",
"main": "index.js",
"scripts": {
"test": "mocha ./spec/*.spec.js",
"start": "nodemon index.js",
"posttest": "npm run lint",
"lint": "eslint --fix ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kgodsmark/northcoders_news_sprint.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kgodsmark/northcoders_news_sprint/issues"
},
"homepage": "https://github.com/kgodsmark/northcoders_news_sprint#readme",
"dependencies": {
"async": "^2.1.4",
"body-parser": "^1.15.2",
"chance": "^1.0.4",
"cors": "^2.8.4",
"express": "^4.14.0",
"log4js": "^1.0.1",
"moment": "^2.17.0",
"mongodb": "^2.2.33",
"mongoose": "^4.7.0",
"nodemon": "^1.12.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.12.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^3.5.3",
"supertest": "^3.0.0"
}
}