forked from watson-developer-cloud/text-bot-openwhisk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 940 Bytes
/
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
{
"name": "textbot-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"eslint-config-standard": "^10.2.1",
"eslint-plugin-promise": "^3.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts": "^1.1.1",
"react-timestamp": "^4.3.1",
"watson-react-components": "^0.6.16"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha tests/**/* -- -R spec",
"codecov": "npm run test && ./node_modules/.bin/codecov",
"lint": "node_modules/.bin/eslint .",
"autofix": "eslint . --fix",
"eject": "react-scripts eject"
},
"devDependencies": {
"codecov": "^3.0.0",
"eslint": "^4.17.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-react": "^7.6.1",
"istanbul": "^0.4.5",
"mocha": "^4.1.0",
"nock": "^9.1.6",
"watson-developer-cloud": "^3.0.7"
}
}