generated from uclaacm/teach-la-ts-react-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.54 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
{
"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": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.3",
"@mui/material": "^5.14.16",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@types/react-syntax-highlighter": "^15.5.10",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-confetti-explosion": "^2.1.2",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.19.0",
"react-syntax-highlighter": "^15.5.0",
"stylelint-config-prettier": "^9.0.5"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.3",
"@types/react-copy-to-clipboard": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.9.0",
"babel-loader": "^9.1.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.33.2",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.1",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.31",
"react-icons": "^5.0.1",
"sass": "^1.69.5",
"sass-loader": "^13.3.1",
"style-loader": "^3.3.3",
"stylelint": "^14.9.1",
"stylelint-config-sass-guidelines": "^9.0.0",
"stylelint-config-standard": "^29.0.0",
"ts-loader": "^9.5.0",
"typescript": "^5.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.85.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-manifest-plugin": "^5.0.0",
"webpack-merge": "^5.10.0",
"webpack-nano": "^1.1.1",
"webpack-pwa-manifest": "^4.3.0"
}
}