generated from uclaacm/teach-la-ts-react-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.41 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
{
"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": "^18.0.8",
"@types/react-dom": "^17.0.10",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"eslint-plugin-prettier": "^4.0.0",
"lodash": "^4.17.21",
"prettier": "^2.5.1",
"react": "^18.2.0",
"react-burger-menu": "^3.0.8",
"react-d3-tree": "^3.3.4",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-rewards": "^2.0.4",
"react-router-dom": "^6.3.0",
"react-snowfall": "^1.1.2",
"stylelint-config-prettier": "^9.0.3",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.14.5",
"@types/lodash": "^4.14.184",
"@types/react-burger-menu": "^2.8.3",
"@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.22.3",
"css-loader": "^6.7.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.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.51.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"stylelint": "^14.8.1",
"stylelint-config-sass-guidelines": "^9.0.0",
"stylelint-config-standard": "^24.0.0",
"ts-loader": "^9.2.4",
"typescript": "^4.6.4",
"url-loader": "^4.1.1",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.8.1",
"webpack-manifest-plugin": "^4.1.1",
"webpack-merge": "^5.8.0",
"webpack-nano": "^1.1.1",
"webpack-pwa-manifest": "^4.3.0"
}
}