-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
121 lines (121 loc) · 3.37 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "watson-assistant-demo-duo",
"version": "1.0.0",
"description": "Watson Assistant Banking demo",
"main": "index.js",
"private": true,
"scripts": {
"start": "node server.js",
"start:prod": "npm run build && NODE_ENV=production node server.js",
"build": "webpack --mode=production --node-env=production",
"test-unit": "jest --config ./test/jest.config.json",
"test": "npm run lint && npm run test-unit",
"lint": "eslint .",
"autofix": "eslint --fix .",
"validate": "npm ls",
"watch-css": "node-sass -w src/scss/ -o public/style",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/assistant-demo.git"
},
"jest": {
"setupFilesAfterEnv": [
"./src/components/setupTests.js"
]
},
"keywords": [
"Watson",
"Assistant"
],
"engines": {
"node": ">=12"
},
"engineStrict": true,
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"csurf": "^1.11.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"helmet": "^4.6.0",
"ibm-watson": "^6.1.1",
"node-cache": "^5.1.2",
"uuid": "^8.3.2",
"webpack": "^5.43.0",
"webpack-dev-middleware": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@ibm/grid": "^0.2.3",
"@ibm/type": "^0.5.3",
"@svgr/webpack": "^5.5.0",
"ajv": "^6.12.6",
"autoprefixer": "^10.2.6",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-preset-react": "^6.24.1",
"chai": "^4.3.4",
"css-loader": "^5.2.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fetch-mock": "^9.11.0",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"mini-css-extract-plugin": "^2.1.0",
"node-sass": "^6.0.1",
"postcss": "^8.3.5",
"postcss-loader": "^6.1.1",
"postcss-sass": "^0.5.0",
"precommit-hook": "^3.0.0",
"prettier": "^2.3.2",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"sinon": "^11.1.1",
"smoothscroll-polyfill": "^0.4.4",
"supertest": "^6.1.3",
"system": "^2.0.1",
"url-loader": "^4.1.1",
"watson-react-components": "^0.6.19",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-hot-middleware": "^2.25.0",
"workbox-webpack-plugin": "^6.1.5"
},
"author": "IBM",
"license": "MIT",
"pre-commit": [
"lint",
"validate"
],
"bugs": {
"url": "https://github.com/watson-developer-cloud/assistant-demo/issues"
},
"homepage": "https://github.com/watson-developer-cloud/assistant-demo#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}