-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "react-boilerplate",
"version": "1.0.0",
"scripts": {
"start": "webpack-dev-server --mode development --open",
"build": "webpack --mode production",
"lint": "eslint",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"prepare": "husky",
"lint:write": "eslint --fix"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"css-loader": "^7.1.2",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "5.5.4",
"typescript-eslint": "^8.9.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"lint-staged": {
"*.{js,mjs,cjs,jsx,mjsx,ts,tsx,mtsx}": [
"npm run lint:write",
"prettier --write"
]
}
}