This repository has been archived by the owner on May 13, 2021. It is now read-only.
forked from watson-developer-cloud/car-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.52 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": "@ibm-watson/car-dashboard",
"version": "0.1.0",
"main": "server.js",
"private": true,
"scripts": {
"start": "node server.js",
"test": "npm run lint && npm run test-unit",
"test-unit": "istanbul cover ./node_modules/mocha/bin/_mocha test",
"lint": "eslint .",
"autofix": "eslint --fix .",
"codecov": "npm run test && (codecov || true)",
"postinstall": "npm run build",
"build": "gulp build-html",
"watch": "gulp server:watch"
},
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/car-dashboard.git"
},
"license": "Apache-2.0",
"author": "IBM Corp.",
"dependencies": {
"body-parser": "1.18.3",
"compression": "1.7.3",
"dotenv": "^6.0.0",
"express": "4.16.3",
"express-rate-limit": "^3.2.0",
"express-secure-only": "^0.2.1",
"express-status-monitor": "^1.2.3",
"gulp": "^3.9.1",
"gulp-clean-css": "3.10.0",
"gulp-develop-server": "^0.5.2",
"gulp-load-plugins": "^1.5.0",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-useref": "^3.1.5",
"helmet": "^3.13.0",
"vcap_services": "^0.5.1",
"watson-developer-cloud": "^3.11.1",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"eslint": "^5.6.1",
"eve": "^0.5.4",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"semantic-release": "^14.0.4",
"supertest": "^3.3.0"
},
"engines": {
"node": ">= 8.x"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}