-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.5 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.5 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-boilerplate",
"author": "Necrobits",
"version": "1.0.0",
"files": [
"build"
],
"scripts": {
"prebuild": "rm -rf ./build",
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development vite --force --host --port 4000",
"build": "TSC_COMPILE_ON_ERROR=true tsc --showConfig --skipLibCheck && vite build --debug",
"build:dev": "TSC_COMPILE_ON_ERROR=true tsc --showConfig --skipLibCheck && vite build --debug --mode development",
"build:staging": "TSC_COMPILE_ON_ERROR=true tsc --showConfig --skipLibCheck && vite build --debug --mode staging",
"build:prod": "TSC_COMPILE_ON_ERROR=true tsc --showConfig --skipLibCheck && vite build --debug --mode production",
"serve": "vite preview",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,scss,md,json}\" ",
"lint": "yarn run lint:format && yarn run lint:fix ",
"type-check": "tsc",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"dependencies": {
"@douyinfe/semi-icons": "^2.32.2",
"@douyinfe/semi-ui": "^2.32.2",
"@redux-hive/core": "^0.2.2",
"@tanstack/react-query": "^4.29.1",
"auto-bind": "^5.0.1",
"gobits": "^0.0.12",
"i18next": "^22.4.14",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-resources-to-backend": "^1.1.3",
"immer": "^9.0.21",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-i18next": "^12.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.10.0",
"redux": "^4.1.2",
"redux-saga": "^1.1.3",
"reselect": "^4.1.6",
"use-immer": "^0.9.0"
},
"devDependencies": {
"@necrobits/vite-plugin-semi-theme": "^0.2.1",
"@semi-bot/semi-theme-nyx-c": "^1.0.7",
"@tanstack/react-query-devtools": "^4.29.1",
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/chrome": "^0.0.193",
"@types/lodash": "^4.14.192",
"@types/node": "^16.11.6",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@types/reflect-metadata": "^0.1.0",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/ui": "^0.30.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"husky": "^8.0.3",
"jsdom": "^21.1.1",
"lint-staged": "^13.2.1",
"pre-commit": "^1.2.2",
"prettier": "^2.4.1",
"sass": "^1.43.4",
"ts-jest": "^29.1.0",
"typescript": "^4.7.4",
"vite": "^4.2.1",
"vite-plugin-import": "^0.4.0",
"vitest": "^0.30.1"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"eslint --fix"
]
}
}