This repository has been archived by the owner on Dec 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
74 lines (74 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
73
74
{
"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 --max_old_space_size=512 app.js",
"start:watch": "nodemon app.js",
"bootstrap": "cp env.sample .env",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"axios": "^0.21.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babelify": "^10.0.0",
"cf-deployment-tracker-client": "*",
"cfenv": "^1.2.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-browserify": "^1.0.3",
"express-react-views": "^0.11.0",
"ibm-watson": "^5.7.1",
"isomorphic-fetch": "^3.0.0",
"moment": "^2.29.1",
"nodemon": "^2.0.6",
"prop-types": "^15.7.2",
"query-string": "^6.13.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"recharts": "^1.8.5",
"rss": "^1.2.2",
"shell-quote": "^1.6.1",
"uglifyify": "^5.0.2",
"vcap_services": "^0.2.0",
"watson-react-components": "^0.6.19"
},
"engines": {
"node": ">=14.0.0"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
],
"ignore": [
"node_modules"
]
},
"devDependencies": {
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.5",
"jest": "^26.6.3",
"jest-cli": "^26.6.3"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
}
}