-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
108 lines (108 loc) · 2.74 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "express-api-starter-kit",
"description": "Express API starter kit",
"author": {
"name": "Gerard Rovira Sánchez",
"email": "[email protected]",
"url": "zurfyx.com"
},
"version": "1.0.0",
"main": "src/server.js",
"scripts": {
"start": "npm run start-prod",
"start-prod": "better-npm-run start-prod",
"start-dev": "better-npm-run start-dev",
"lint": "eslint .",
"test": "npm run lint && better-npm-run test-cli",
"test-cli": "better-npm-run test-cli",
"coverage": "better-npm-run coverage"
},
"betterScripts": {
"start-prod": {
"command": "node src/server.js",
"env": {
"NODE_ENV": "production",
"PORT": 3030,
"DEBUG": "*info,*error"
}
},
"start-dev": {
"command": "nodemon src/server.js",
"env": {
"NODE_ENV": "development",
"PORT": 3030,
"DEBUG": "*info,*dev,*error",
"DEBUG_COLORS": true
}
},
"test-cli": {
"command": "mocha ./src/__tests__/helper.js \"./src/**/*.test.js\" --timeout 120000",
"env": {
"NODE_ENV": "test",
"PORT": 3030,
"DEBUG": "*info,*dev,*error"
}
},
"coverage": {
"command": "istanbul --include-all-sources cover _mocha -- ./src/__tests__/helper.js \"./src/**/*.test.js\" --timeout 120000",
"env": {
"NODE_ENV": "test",
"PORT": 3030,
"DEBUG": "*error"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/zurfyx/express-api-starter-kit.git"
},
"keywords": [
"node",
"express",
"api",
"starter",
"kit",
"json"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/zurfyx/express-api-starter-kit/issues"
},
"homepage": "https://github.com/zurfyx/express-api-starter-kit#readme",
"dependencies": {
"bcrypt": "^1.0.2",
"better-npm-run": "0.0.14",
"body-parser": "^1.16.1",
"config": "^1.25.1",
"connect-redis": "^3.2.0",
"cookie-parser": "^1.4.3",
"crypto": "0.0.3",
"debug": "^2.6.1",
"express": "^4.14.1",
"express-session": "^1.15.1",
"http": "0.0.0",
"mongoose": "^4.8.4",
"morgan": "^1.8.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"redis": "^2.6.5",
"validator": "^7.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"fetch-absolute": "^1.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.2.0",
"mockery": "^2.0.0",
"mockgoose": "^7.0.0",
"mongoose": "^4.8.5",
"node-fetch": "^1.6.3",
"nodemon": "^1.11.0",
"sinon": "^2.0.0"
}
}