-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.91 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
{
"name": "react-sprint",
"version": "0.0.1",
"description": "React sprint",
"main": "index.js",
"repository": "[email protected]:react-sprint/programming-tutor.git",
"author": "leeyun1533 <[email protected]>",
"license": "MIT",
"scripts": {
"start": "webpack serve --mode development --config ./configs/webpack/webpack.config.dev.js",
"build": "webpack --mode production --config ./configs/webpack/webpack.config.prod.js",
"lint": "concurrently 'yarn run lint:eslint' 'yarn lint:check-type'",
"lint:check-type": "tsc --project ./tsconfig.json --noEmit",
"lint-staged": "lint-staged",
"lint:eslint": "eslint --fix --ext js,ts,tsx src"
},
"browserslist": [
"cover 99.5%"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"*.{ts,js,json,css,md}": [
"prettier --write",
"git add"
],
"*.{ts,tsx,js,jsx}": [
"eslint",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-transform-regenerator": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/classnames": "^2.2.11",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-redux": "^7.1.16",
"@types/webpack": "^4.41.25",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"autoprefixer": "^10.2.4",
"babel-loader": "^8.2.2",
"concurrently": "^6.0.0",
"css-loader": "^5.0.2",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-jsx-conditionals": "^2.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"fork-ts-checker-webpack-plugin": "^6.0.5",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"mini-css-extract-plugin": "^1.3.8",
"node-sass": "^5.0.0",
"postcss-loader": "^5.0.0",
"prettier": "^2.1.2",
"react-hot-loader": "^4.13.0",
"sass-loader": "^11.0.1",
"webpack": "^5.5.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.4.0"
},
"dependencies": {
"@reduxjs/toolkit": "^1.4.0",
"classnames": "^2.2.6",
"core-js": "^3.9.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"typescript": "^4.0.5"
}
}