-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
132 lines (132 loc) · 3.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
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
122
123
124
125
126
127
128
129
130
131
132
{
"name": "harvester",
"version": "2.0.10",
"main": "./src/js/main-app.js",
"description": "Collaborative data collection tool developed by the Associated Press",
"repository": "https://gitlab.inside.ap.org/newsapps/harvester",
"license": "ISC",
"sideEffects": false,
"engines": {
"node": ">=12.0 <15.0",
"yarn": "1.x"
},
"scripts": {
"release": "bin/docker push && echo 'Successfully released docker image!'",
"prerelease": "yarn version && yarn build:docker",
"postversion": "git push --tags && git push",
"build:docker": "bin/docker build",
"devbackend": "BABEL_WATCH_NODE_OPTIONS=\"-r dotenv/config\" babel-watch -- server/index.js",
"devfrontend": "webpack-dev-server --config webpack-dev.config.js",
"start": "node -r dotenv/config bin/dev.js",
"server": "node server/index.js",
"build": "webpack --mode=production --config webpack-prod.config.js",
"test": "jest --coverage",
"lint": "eslint \"src/**/*.js\"",
"docs:build": "mkdocs build",
"docs:serve": "mkdocs serve"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-watch": "^7.0.0",
"chokidar": "^3.4.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.3",
"eslint": "^7.1.0",
"eslint-config-standard": "14.1.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "4.0.1",
"fibers": "^5.0.0",
"file-loader": "^6.0.0",
"glob": "^7.1.6",
"html-webpack-plugin": "^4.3.0",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prop-types": "^15.7.2",
"resolve-url-loader": "^3.1.1",
"sass": "^1.26.7",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.3",
"to-string-loader": "^1.1.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.11.0",
"webpack-hot-middleware": "^2.25.0",
"yargs": "^15.3.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"core-js": "^3.6.5",
"csv-string": "^4.0.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-http-proxy": "^1.6.0",
"googleapis": "^52.1.0",
"helmet": "^4.4.1",
"http-proxy-middleware": "^1.0.6",
"jsonwebtoken": "^8.5.1",
"marked": "^4.0.1",
"mini-css-extract-plugin": "^0.9.0",
"moment": "^2.29.1",
"react": "^16.13.1",
"react-datepicker": "^3.0.0",
"react-datetime": "^3.0.4",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-redux": "^7.2.2",
"react-select": "^3.1.0",
"redux": "^4.0.5",
"sanitize-html": "^2.5.3",
"styled-components": "^5.1.1"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "10"
}
}
],
"@babel/react"
]
},
"jest": {
"moduleDirectories": [
"node_modules",
"src"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}