-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.88 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
{
"name": "react-typescript-boilerplate",
"version": "0.1.0",
"description": "react & typescript boilerplate without CRA",
"repository": "https://github.com/hseoy/react-typescript-boilerplate.git",
"author": "Your Name <[email protected]",
"license": "MIT",
"private": true,
"scripts": {
"dev": "env-cmd webpack serve --mode development --config ./config/webpack.config.js",
"build": "env-cmd webpack --mode production --progress --config ./config/webpack.config.js",
"lint": "yarn eslint --ext .tsx --ext .ts .",
"lint:fix": "yarn eslint --ext .tsx --ext .ts . --fix",
"prettier:write": "yarn prettier --write .",
"prepare": "husky install",
"precommit": "yarn lint-staged --config ./config/lintstagedrc.json",
"test": "jest --config ./config/jest.config.js",
"test:watch": "jest --watchAll --config ./config/jest.config.js",
"test:coverage": "jest --coverage --config ./config/jest.config.js"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime-corejs3": "^7.15.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.29",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-jest": "^27.3.0",
"babel-loader": "^8.2.2",
"babel-plugin-root-import": "^6.6.0",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"env-cmd": "^10.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-testing-library": "^4.12.4",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.3.4",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.0",
"jest": "^27.3.0",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^11.2.3",
"mini-css-extract-plugin": "^2.4.2",
"prettier": "^2.4.1",
"style-loader": "^3.3.0",
"svg-url-loader": "^7.1.1",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"url-loader": "^4.1.1",
"webpack": "^5.56.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"core-js": "3",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}