This repository has been archived by the owner on Dec 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
84 lines (84 loc) · 2.49 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
{
"name": "watson-discovery-analyze-data-breaches",
"version": "1.0.0",
"description": "Discovery sample application",
"main": "server.js",
"scripts": {
"start": "node --max_old_space_size=256 server.js",
"debug": "node --debug server.js",
"test-page": "./node_modules/mocha/bin/_mocha test/integration/page",
"test-integration": "casperjs test ./test/integration/test.*.js",
"test-integration-runner": "NODE_ENV=test node casper-runner.js",
"test": "npm run lint && npm run test-unit && npm run test-page && npm run test-integration-runner",
"test-unit": "./node_modules/mocha/bin/_mocha test/unit",
"lint": "eslint . --ext .js,jsx",
"autofix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "https://github.com/IBM/watson-discovery-analyze-data-breaches.git"
},
"bugs": {
"url": "https://github.com/IBM/watson-discovery-analyze-data-breaches/issues"
},
"author": "IBM Corp.",
"engines": {
"node": ">=6.0",
"npm": ">=3.0"
},
"license": "Apache-2.0",
"dependencies": {
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"babelify": "^7.3.0",
"body-parser": "^1.15.2",
"classnames": "^2.2.5",
"compression": "^1.6.2",
"debug": "^2.6.0",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-browserify": "^1.0.3",
"express-rate-limit": "^2.6.0",
"express-react-views": "^0.10.2",
"express-secure-only": "^0.2.1",
"helmet": "^3.21.2",
"moment": "^2.17.1",
"morgan": "^1.9.1",
"node-prismjs": "^0.1.0",
"prismjs": "^1.6.0",
"react": "^15.4.2",
"react-addons-pure-render-mixin": "^15.4.2",
"react-addons-shallow-compare": "^15.4.2",
"react-daterange-picker": "^1.1.0",
"react-dates": "^4.3.2",
"react-dom": "^15.4.2",
"react-js-pagination": "^3.0.2",
"recharts": "^0.20.2",
"uglifyify": "^3.0.4",
"watson-developer-cloud": "3.7.0",
"watson-react-components": "^0.6.19",
"whatwg-fetch": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.24.1",
"casperjs": "^1.1.3",
"enzyme": "^2.8.2",
"eslint": "^4.18.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.9.0",
"mocha": "^5.2.0",
"phantomjs-prebuilt": "^2.1.14",
"react-addons-test-utils": "^15.5.1",
"sinon": "^2.2.0",
"supertest": "^3.3.0"
},
"babel": {
"presets": [
"es2015",
"react"
],
"ignore": "node_modules"
}
}