-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.39 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "wearecolorcoded-api",
"version": "1.0.0",
"description": "wearecolorcoded.us site's api",
"os": [
"darwin",
"linux"
],
"engineStrict": true,
"engines": {
"node": ">=8.0.0",
"npm": "~4.6.1",
"yarn": ">=1.0.0"
},
"main": "index.js",
"pre-commit": [
"lint"
],
"scripts": {
"start": "node server.js",
"start-dev": "nodemon server.js",
"lint": "eslint api/ server.js --cache",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/orgs/wearecolorcoded/wearecolorcoded-api"
},
"author": "wearecolorcoded",
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"express": "^4.15.4",
"express-session": "^1.15.5",
"mongoose": "^4.11.9",
"mongoose-seed-db": "^0.0.10",
"mongoose-string-query": "^0.2.5",
"mongoose-timestamp": "^0.6.0",
"morgan": "^1.8.2",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.2.1",
"pre-commit": "^1.2.2",
"winston": "^2.3.1"
},
"devDependencies": {
"eslint": "^4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"nodemon": "^1.11.0"
}
}