-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.33 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
{
"name": "app",
"version": "0.0.0",
"description": "",
"dependencies": {
"connected-react-router": "^6.8.0",
"lodash-es": "^4.17.15",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-id-generator": "^3.0.0",
"react-redux": "^7.2.0",
"react-router": "^5.2.0",
"redux": "^4.0.5"
},
"devDependencies": {
"polished": "^3.6.3",
"@types/react-router": "^5.1.7",
"mini-css-extract-plugin": "^0.9.0",
"core-js": "^3.6.5",
"css-loader": "^3.5.3",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@types/history": "^4.7.5",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/react-redux": "^7.1.7",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-jest": "^25.2.6",
"copy-webpack-plugin": "^5.1.1",
"csstype": "^2.6.10",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^4.1.2",
"html-webpack-plugin": "^4.0.4",
"jest": "^25.2.7",
"linaria": "^1.3.3",
"prettier": "^2.0.2",
"react-test-renderer": "^16.13.1",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"typescript-eslint-language-service": "^2.1.8",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"test": "jest",
"build": "npm run-script clean && DOTENV_CONFIG_PATH=./env/webpack.prod.build.env node -r dotenv/config node_modules/.bin/webpack-cli -p --config webpack/prod.webpack.config.js",
"build:analyze_bundle": "npm run-script clean && DOTENV_CONFIG_PATH=./env/webpack.prod.build.env ANALYZE_BUNDLE=true node -r dotenv/config node_modules/.bin/webpack-cli -p --config webpack/prod.webpack.config.js",
"start": "NODE_ENV=development webpack-dev-server --config webpack/dev.webpack.config.js",
"lint": "eslint --ext=tsx --ext=ts ./src/",
"clean": "rm -rf public/"
},
"author": "@resolritter",
"license": "ISC"
}