-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.25 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
{
"name": "react-typescript-boiler-plate",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack serve --config config/webpack.dev.js --progress",
"build": "webpack --config config/webpack.prod.js --progress",
"lint": "eslint ./src --ext .ts --parser-options=project:'./tsconfig.json'",
"lint:fix": "eslint ./src --ext .ts --parser-options=project:'tsconfig.json' --fix",
"test": "jest --config ./jest.config.js",
"test:snapshot": "jest --config ./jest.config.js --updateSnapshot --silent",
"test:clean": "jest --config ./jest.config.js --silent",
"test:coverage": "jest --config ./jest.config.js --coverage --silent",
"lint-staged": "lint-staged"
},
"dependencies": {
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@babel/runtime-corejs3": "^7.18.3",
"@emotion/babel-plugin": "^11.9.2",
"@svgr/webpack": "^6.2.1",
"@types/jest": "^28.1.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"babel-jest": "^28.1.0",
"babel-loader": "^8.2.5",
"compression-webpack-plugin": "^9.2.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.2.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "^26.4.6",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-fetch-mock": "^3.0.3",
"mini-css-extract-plugin": "^2.6.0",
"prettier": "^2.6.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"ts-jest": "^28.0.4",
"ts-loader": "^9.3.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.7.2",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.1",
"webpack-merge": "^5.8.0"
}
}