-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.22 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
{
"name": "@ibm-watson/natural-language-classifier-demo",
"version": "1.0.0",
"description": "Natural Language Classifier sample application",
"engines": {
"node": ">=4.0",
"npm": ">3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/natural-language-classifier-nodejs.git"
},
"author": "IBM Corp.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/natural-language-classifier-nodejs/issues"
},
"dependencies": {
"babel-eslint": "^8.2.6",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"body-parser": "^1.18.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-browserify": "^1.0.2",
"express-rate-limit": "^2.11.0",
"express-react-views": "^0.10.5",
"express-secure-only": "^0.2.1",
"express-status-monitor": "^1.1.4",
"helmet": "^3.12.1",
"jquery": "^3.3.1",
"morgan": "^1.9.0",
"prismjs": "^1.15.0",
"prop-types": "^15.6.2",
"react": "^15.6.2",
"react-addons-pure-render-mixin": "^15.6.2",
"react-dom": "^15.6.2",
"react-prism": "^4.3.2",
"uglifyify": "^5.0.1",
"watson-developer-cloud": "^3.7.0",
"watson-react-components": "^0.6.16"
},
"scripts": {
"start": "node server.js",
"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-integration-runner",
"test-unit": "mocha test/unit --exit",
"lint": "eslint .",
"autofix": "eslint --fix .",
"codecov": "npm run test && (codecov || true)"
},
"devDependencies": {
"casperjs": "^1.1.4",
"codecov": "^3.0.4",
"eslint": "^5.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"mocha": "^5.2.0",
"phantomjs-prebuilt": "^2.1.16",
"supertest": "^3.1.0"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}