-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 KB
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
{
"name": "backend-api",
"version": "0.0.1",
"description": "Backend API",
"main": "server.js",
"scripts": {
"build": "npm install && gulp",
"start": "nodemon ./src/server.js",
"test": "NODE_ENV=test gulp test",
"test-watch": "NODE_ENV=test gulp test-watch",
"develop": "NODE_ENV=test && nodemon ./src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lazlojuly/backend-api.git"
},
"author": "lazlojuly",
"license": "ISC",
"bugs": {
"url": "https://github.com/lazlojuly/backend-api/issues"
},
"homepage": "https://github.com/lazlojuly/backend-api#readme",
"dependencies": {
"body-parser": "^1.15.2",
"config": "^1.21.0",
"cors": "^2.7.1",
"express": "^4.14.0",
"express-boom": "^1.0.0",
"mongoose": "^4.5.9",
"node-service-utils": "^0.1.0",
"winston": "^2.2.0"
},
"devDependencies": {
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.3.1",
"eslint-config-onpono-base": "^1.0.0",
"eslint-plugin-import": "^1.13.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-mocha": "^3.0.1",
"mocha": "^3.0.2",
"run-sequence": "^1.2.2",
"should": "^11.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}