-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.76 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
{
"name": "ask-k",
"version": "1.0.0",
"private": true,
"main": "app.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/IBM/ask-k.git"
},
"scripts": {
"dev": "nodemon ./server/app.js",
"start": "node --max_old_space_size=512 app.js",
"bootstrap": "cp env.sample .env",
"test -u": "jest -u",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.5",
"babelify": "^10.0.0",
"chart.js": "^2.7.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-browserify": "^1.0.3",
"express-react-views": "^0.11.0",
"ibm-watson": "5.4.0",
"isomorphic-fetch": "^2.2.1",
"prop-types": "^15.6.2",
"query-string": "^6.2.0",
"react": "^16.6.3",
"react-chartjs-2": "^2.9.0",
"react-dom": "^16.6.3",
"react-tagcloud": "^2.0.0",
"semantic-ui-react": "^0.88.2",
"sort-by": "^1.2.0",
"uglifyify": "^5.0.2"
},
"engines": {
"node": "^12.0.0"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
],
"ignore": [
"node_modules"
]
},
"devDependencies": {
"eslint": "^4.13.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"jest": "^24.5.0",
"jest-cli": "^24.5.0",
"nodemon": "^1.18.9",
"react-test-renderer": "^16.6.3"
}
}