This repository has been archived by the owner on Nov 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 178
/
package.json
78 lines (78 loc) · 2.16 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
{
"name": "@ibm-watson/discovery-nodejs",
"version": "1.0.0",
"description": "Discovery sample application",
"main": "server.js",
"scripts": {
"start": "node scripts/start.js",
"build": "npx react-scripts build",
"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 build && npm run test-integration-runner",
"test-unit": "npx react-scripts test --env=jsdom",
"lint": "npx eslint --ext .jsx --ext .js . test"
},
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/discovery-nodejs.git"
},
"bugs": {
"url": "https://github.com/watson-developer-cloud/discovery-nodejs/issues"
},
"author": "IBM Corp.",
"engines": {
"node": ">=12.0"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"classnames": "^2.2.5",
"cross-spawn": "^7.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.0.0",
"express-secure-only": "^0.2.1",
"helmet": "^3.21.2",
"ibm-watson": "^5.1.0",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"recharts": "^1.8.5",
"watson-react-components": "^0.6.19"
},
"devDependencies": {
"babel-core": "^6.24.1",
"casperjs": "^1.1.3",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.6.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"mocha": "^6.2.2",
"phantomjs-prebuilt": "^2.1.14",
"react-addons-test-utils": "^15.5.1",
"react-scripts": "^3.2.0",
"react-test-renderer": "^16.11.0",
"sinon": "^7.5.0",
"supertest": "^4.0.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}