-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
142 lines (142 loc) · 4.24 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
133
134
135
136
137
138
139
140
141
142
{
"name": "knmi-react-redux-starter-kit",
"version": "0.0.3",
"description": "This package is the de facto basis for React web appliction development at the Royal Netherlands Meteorological Institute (KNMI)",
"main": "index.js",
"engines": {
"node": ">=6.4.0",
"npm": "^3.0.0"
},
"scripts": {
"clean": "rimraf dist",
"lint": "eslint --ext .jsx --ext .js --ext .json .",
"lint:fix": "better-npm-run lint -- --fix",
"start": "better-npm-run start",
"test": "better-npm-run test",
"compile:dev": "better-npm-run compile:dev",
"compile:prod": "better-npm-run compile:prod",
"validate": "npm ls"
},
"betterScripts": {
"compile:dev": {
"command": "npm run clean && webpack --mode development --config config/webpack.dev.config.js",
"env": {
"NODE_ENV": "development",
"DEBUG": "app:*"
}
},
"compile:prod": {
"command": "npm run clean && webpack --mode production --config config/webpack.prod.config.js",
"env": {
"NODE_ENV": "production",
"DEBUG": "app:*"
}
},
"start": {
"command": "webpack-dev-server --port 3000 --mode development --config config/webpack.dev.config.js",
"env": {
"DEBUG": "app:*"
}
},
"test": {
"command": "cross-env nyc _mocha",
"env": {
"NODE_ENV": "test",
"DEBUG": "app:*"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/KNMI/GeoWeb-FrontEnd.git"
},
"author": "KNMI, based on work by David Zukowski <[email protected]> (http://zuko.me)",
"license": "MIT",
"dependencies": {
"fs-extra": "^8.1.0",
"ip": "^1.1.5",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-react-html-attrs": "^2.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"clean-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"better-npm-run": "0.1.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cheerio": "^1.0.0-rc.3",
"compression": "^1.7.4",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^5.2.1",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"debug": "^4.1.1",
"dirty-chai": "^2.0.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.17.1",
"file-loader": "^4.2.0",
"ignore-styles": "^5.0.1",
"imports-loader": "^0.8.0",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.2.0",
"node-sass": "^4.12.0",
"nodemon": "^1.19.2",
"nyc": "^14.1.1",
"postcss-loader": "^3.0.0",
"precommit-hook": "^3.0.0",
"react-addons-test-utils": "^15.6.2",
"react-hot-loader": "^4.12.12",
"react-test-renderer": "^16.9.0",
"redbox-react": "^1.6.0",
"redux-devtools": "^3.5.0",
"rimraf": "^2.6.2",
"sass-loader": "^8.0.0",
"sinon": "^7.4.2",
"sinon-chai": "^3.3.0",
"strip-loader": "^0.1.2",
"style-loader": "^1.0.0",
"transform-runtime": "0.0.0",
"url-loader": "^2.1.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"yargs": "^14.0.0"
},
"pre-commit": [
"lint",
"test"
]
}