This repository has been archived by the owner on Dec 7, 2021. It is now read-only.
forked from watson-developer-cloud/discovery-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.03 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": "@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-page": "_mocha test/integration/page --exit",
"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 build && npm run test-integration-runner",
"test-unit": "npx react-scripts test --env=jsdom",
"lint": "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": ">=8.0",
"npm": ">=3.0"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"classnames": "^2.2.5",
"cross-spawn": "^6.0.5",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-rate-limit": "^2.14.2",
"express-secure-only": "^0.2.1",
"helmet": "^3.14.0",
"moment": "^2.17.1",
"morgan": "^1.9.1",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"recharts": "^0.20.2",
"watson-developer-cloud": "^3.12.0",
"watson-react-components": "^0.6.17"
},
"devDependencies": {
"babel-core": "^6.24.1",
"casperjs": "^1.1.3",
"enzyme": "^2.8.2",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.11.1",
"mocha": "^5.2.0",
"phantomjs-prebuilt": "^2.1.14",
"react-addons-test-utils": "^15.5.1",
"react-scripts": "^1.1.5",
"react-test-renderer": "^15.6.1",
"sinon": "^2.4.1",
"supertest": "^3.3.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}