generated from uclaacm/teach-la-ts-react-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.1 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
{
"private": true,
"scripts": {
"start": "webpack serve --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint \"**/*.tsx\" \"**/*.ts\" && npx stylelint \"**/*.css\" \"**/*.scss\" && prettier --check .",
"lint-fix": "eslint --fix \"**/*.tsx\" \"**/*.ts\" && npx stylelint --fix \"**/*.css\" \"**/*.scss\" && prettier --write .",
"pre-commit": "yarn lint-fix || true",
"prepare": "husky install"
},
"dependencies": {
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.10",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"stylelint-config-prettier": "^9.0.3"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.14.5",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-loader": "^8.2.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.20.2",
"css-loader": "^6.5.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.0.8",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"mini-css-extract-plugin": "^2.4.5",
"sass": "^1.44.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"stylelint": "^14.3.0",
"stylelint-config-sass-guidelines": "^9.0.0",
"stylelint-config-standard": "^24.0.0",
"ts-loader": "^9.2.4",
"typescript": "^4.5.2",
"url-loader": "^4.1.1",
"webpack": "^5.61.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.7.3",
"webpack-manifest-plugin": "^4.1.1",
"webpack-merge": "^5.8.0",
"webpack-nano": "^1.1.1",
"webpack-pwa-manifest": "^4.3.0"
}
}