-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (67 loc) · 1.89 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
{
"name": "nodejs_api",
"version": "1.0.0",
"description": "NodeJS Application Demo",
"main": "index.js",
"nyc": {
},
"scripts": {
"start": "nodemon --exec NODE_ENV=development PORT=3001 babel-node ./bin/server",
"test:unit": "cross-env NODE_ENV=test nyc mocha --require babel-register --require babel-polyfill ./tests/unit/*.spec.js",
"test:integration": "cross-env NODE_ENV=test mocha ./tests/integration --require babel-register --require babel-polyfill",
"eslint:fix": "eslint ./ --fix",
"eslint": "eslint ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dharmatin/nodejs-api.git"
},
"keywords": [
"NodeJS",
"API",
"Demo"
],
"author": "Deni Dharmatin As",
"license": "ISC",
"bugs": {
"url": "https://github.com/dharmatin/nodejs-api/issues"
},
"homepage": "https://github.com/dharmatin/nodejs-api#readme",
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"dateformat": "^3.0.2",
"express": "^4.16.2",
"lodash": "^4.17.4",
"redis": "^2.8.0",
"solr-client": "^0.7.0",
"winston": "^2.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.1.3",
"eslint": "^4.16.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"get-port": "^3.2.0",
"istanbul": "^0.4.5",
"mocha": "^4.1.0",
"morgan": "^1.9.0",
"nodemon": "^1.14.11",
"nyc": "^11.4.1",
"request": "^2.83.0",
"sinon": "^4.1.5",
"sinon-chai": "^2.14.0"
}
}