This repository has been archived by the owner on Apr 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
128 lines (128 loc) · 5.35 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
{
"license": "MIT",
"name": "jsapp-boilerplate",
"version": "0.0.1",
"scripts": {
"analyze:bundle": "cross-env mkdir -p tmp && HIDE_CONFIG=true yarn --silent build:optimized --profile --json > dist/stats.json && webpack-bundle-analyzer dist/stats.json",
"build:github": "cross-env BUILD_CONFIG_FILE=./config/configValues.github.js APP_ENV=github yarn build:optimized",
"build:optimized": "cross-env NODE_ENV=production webpack --progress --config webpack.config.js --mode production",
"build:production": "cross-env APP_ENV=production yarn build:optimized",
"build": "webpack --progress --config webpack.config.js",
"c": "yarn lint && yarn test",
"ck": "yarn c",
"clean": "rm -rf dist",
"config:generate:docker": "node config/generateJson.js ./dist/config.json w",
"config:generate:dev": "node config/generateJson.js ./config/config.json w",
"config:generate:github": "cross-env CONFIG_FILE=./configValues.github.js node config/generateJson.js ./dist/config.json w",
"d:nohot": "cross-env NODE_ENV=development webpack-dev-server",
"d": "yarn config:generate:dev && cross-env NODE_ENV=development webpack-dev-server --hot",
"deploy:github": "yarn clean && yarn build:github && yarn deploy:github:prebuilt",
"dev:nohot": "yarn d:nohot",
"dev": "yarn d",
"lint:eslint:fix": "yarn lint:eslint --fix",
"lint:eslint": "eslint . --ext .js --ext .jsx --ext .ts --ext .tsx --max-warnings=0",
"lint:fix": "yarn lint:eslint:fix && yarn lint:stylelint:fix",
"lint:stylelint:fix": "yarn lint:stylelint --fix",
"lint:stylelint": "stylelint '**/*.css' '**/*.scss' '**/*.pcss'",
"lint": "yarn lint:eslint && yarn lint:stylelint && yarn tsc:check",
"run:docker": "docker-compose up --build",
"t:w": "jest --watch",
"t": "jest",
"test:coverage": "jest --coverage",
"test:docker": "docker-compose -f docker-compose.test.yml up --build",
"test:watch": "yarn t:w",
"test": "yarn t",
"tsc:check-config": "tsc config/configValues.js --noEmit --skipLibCheck --allowJs --checkJs --lib es2016",
"tsc:check:no-error": "tsc --noEmit --incremental --skipLibCheck || true",
"tsc:check": "tsc --noEmit --incremental --skipLibCheck && yarn tsc:check-config"
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.1",
"classnames": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.5",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"redux": "^4.1.1",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime-corejs3": "^7.15.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@types/classnames": "^2.3.1",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.2",
"@types/react-redux": "^7.1.18",
"@types/react-router-dom": "^5.1.9",
"@types/redux-mock-store": "^1.0.3",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.16.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"autoprefixer": "^10.0.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.5.2",
"babel-loader": "^8.1.0",
"compression-webpack-plugin": "^9.0.0",
"connect-history-api-fallback": "^1.6.0",
"core-js": "^3.17.3",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"cssnano": "^4.1.10",
"eslint": "^7.11.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^6.12.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.2.0",
"jest-fetch-mock": "^3.0.3",
"jest-transform-stub": "^2.0.0",
"postcss-loader": "^3.0.0",
"postcss-mixins": "^6.2.3",
"postcss-preset-env": "^6.7.0",
"postcss-reporter": "^6.0.1",
"preload-webpack-plugin": "^3.0.0-beta.4",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"react-refresh": "^0.10.0",
"redux-mock-store": "^1.5.4",
"style-loader": "^1.2.1",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-prettier": "^1.1.2",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1",
"webpack-shell-plugin": "^0.5.0"
},
"resolutions": {
"//": "When yarn audit fails due to a child dependency, you can override versions here",
"elliptic": "6.5.3",
"http-proxy": ">=1.18.1",
"lodash": ">=4.17.19",
"serialize-javascript": ">=3.1.0"
}
}