-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.07 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
{
"name": "react-template",
"version": "1.0.0",
"description": "This project is for our spectacular SAAS",
"main": "src/index.js",
"scripts": {
"test": "npm run test",
"build": "webpack --config ./webpack/webpack.prod.js",
"start": "webpack serve --config ./webpack/webpack.prod.js",
"prepare": "husky install",
"lint": "eslint --fix --ext .ts,.tsx src/**/*",
"precommit": "prettier -w src/**/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/effihr/react-starter-template.git"
},
"keywords": [
"react",
"javascript",
"saas"
],
"author": "[email protected]",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/effihr/react-starter-template/issues"
},
"homepage": "https://github.com/effihr/react-starter-template#readme",
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.20",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@tsconfig/recommended": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@webpack-cli/generators": "^3.0.7",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.50.0",
"eslint-plugin-react": "^7.33.2",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.0.3",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.10",
"@tanstack/react-query": "^4.35.3",
"axios": "^1.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"react-router-dom": "^6.16.0"
},
"lint-staged": {
"src/**/*.{js,ts}": "eslint --cache --fix"
}
}