-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 2.01 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
{
"name": "vite-project",
"private": true,
"version": "0.0.0",
"scripts": {
"prepare": "husky install",
"dev": "vite",
"build:staging": "tsc && vite build --mode staging",
"build:production": "tsc && vite build --mode production",
"preview": "vite preview",
"test": "jest",
"prettier:check": "prettier '**/*' --check --ignore-unknown",
"prettier:fix": "prettier '**/*' --write --ignore-unknown",
"lint:check": "eslint '*.{js,ts,jsx,tsx,json}' 'src/**/*.{js,ts,jsx,tsx,json}'",
"lint:fix": "eslint --fix '*.{js,ts,jsx,tsx,json}' 'src/**/*.{js,ts,jsx,tsx,json}'"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"wouter": "^2.12.1"
},
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^28.1.8",
"@types/node": "^18.19.33",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/testing-library__jest-dom": "^5.14.9",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^3.1.0",
"babel-jest": "^28.1.3",
"babel-plugin-transform-import-meta": "^2.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-svg-transformer": "^1.0.0",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^29.0.0",
"ts-jest": "^28.0.8",
"typescript": "^4.9.5",
"vite": "^4.5.3",
"vite-plugin-environment": "^1.1.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}