-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.75 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
{
"name": "react-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node config/run.js -dev",
"build": "node config/run.js -build",
"typecheck": "tsc",
"lint": "eslint -c .eslintrc.js --ext .ts ./src/**/*.ts*"
},
"dependencies": {
"@babel/runtime": "^7.7.2",
"@reach/router": "^1.1.1",
"copy-webpack-plugin": "^5.0.5",
"core-js": "^3.4.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.12.18",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"styled-components": "^4.4.1",
"typescript": "^3.7.2"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@types/reach__router": "^1.2.6",
"@types/styled-components": "^4.4.0",
"@types/webpack-env": "^1.14.1",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^3.2.0",
"clean-webpack-plugin": "^3.0.0",
"cross-spawn": "^7.0.1",
"eslint": "^7.10.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.6.2",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-react": "^7.21.2",
"file-loader": "^4.2.0",
"git-revision-webpack-plugin": "^3.0.4",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.19.1",
"url-loader": "^2.2.0",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
}
}