-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.86 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
{
"name": "create-react-app",
"version": "1.0.0",
"private": true,
"description": "Web site created using create-react-app with craco",
"scripts": {
"analyze": "cross-env ANALYZE=TRUE craco build",
"build": "craco build",
"prepare": "husky",
"start": "craco start"
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": "eslint --fix",
"src/**/*": "prettier --write --ignore-unknown",
"src/**/*.{css,scss}": "stylelint"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"classnames": "^2.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@craco/craco": "^7.1.0",
"@craco/types": "^7.1.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"craco-css-modules": "^1.0.6",
"craco-esbuild": "^0.6.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.2",
"react-scripts": "^5.0.1",
"sass": "^1.78.0",
"speed-measure-webpack-plugin": "^1.5.0",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"typescript": "^5.6.2",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-subresource-integrity": "^5.1.0"
},
"packageManager": "pnpm@9.10.0",
"cracoConfig": "./config/craco.js"
}