forked from taijihagino/watson-discovery-news
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.6 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.6 KB
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
{
"name": "watson-discovery-news",
"version": "1.0.0",
"private": true,
"main": "app.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/IBM/watson-discovery-news.git"
},
"scripts": {
"start": "node app.js",
"start:watch": "nodemon app.js",
"bootstrap": "cp env.sample .env",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babelify": "^7.3.0",
"bluebird": "^3.5.0",
"botkit": "^0.6.14",
"cf-deployment-tracker-client": "*",
"cfenv": "^1.1.0",
"dotenv": "^4.0.0",
"express": "^4.16.3",
"express-browserify": "^1.0.2",
"express-react-views": "^0.10.2",
"moment": "^2.22.2",
"nodemon": "^1.17.5",
"prop-types": "^15.6.1",
"query-string": "^4.3.4",
"react": "^15.6.1",
"react-dom": "^15.6.2",
"recharts": "^1.0.0-alpha.0",
"rss": "^1.2.2",
"shell-quote": "^1.6.1",
"shrinkwrap": "^0.4.0",
"uglifyify": "^3.0.4",
"vcap_services": "^0.2.0",
"watson-developer-cloud": "^3.5.3",
"watson-react-components": "^0.6.17"
},
"babel": {
"presets": [
"es2015",
"react"
],
"ignore": "node_modules"
},
"devDependencies": {
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.8.2",
"jest": "^22.4.4",
"jest-cli": "^22.4.4",
"react-addons-test-utils": "^15.5.1"
},
"resolutions": {
"hoek": "4.2.1"
}
}