-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
74 lines (74 loc) · 1.9 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
{
"name": "watson-discovery-sdu-with-assistant",
"version": "1.0.0",
"private": true,
"main": "app.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/IBM/watson-discovery-sdu-with-assistant.git"
},
"scripts": {
"start": "node app.js",
"bootstrap": "cp env.sample .env",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/register": "^7.12.1",
"@livechat/ui-kit": "^0.4.0-10",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.1",
"babelify": "^10.0.0",
"body-parser": "^1.19.0",
"chart.js": "^2.9.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-browserify": "^1.0.3",
"express-react-views": "^0.11.0",
"extend": ">=3.0.2",
"ibm-watson": "^5.7.1",
"isomorphic-fetch": "^3.0.0",
"prop-types": "^15.6.2",
"query-string": "^6.10.1",
"react": "^17.0.1",
"react-bootstrap": "^1.4.0",
"react-dom": "^17.0.1",
"react-livechat": "^1.1.1",
"react-simple-chatbot": "^0.6.1",
"semantic-ui-react": "^2.0.1",
"styled-components": "^5.2.1",
"uglifyify": "^5.0.2"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
],
"ignore": [
"node_modules"
]
},
"engines": {
"node": "14.0.0"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-standard": "^4.1.0",
"minimist": "^1.2.5",
"nodemon": "^2.0.6",
"react-test-renderer": "^17.0.1"
}
}