-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
108 lines (108 loc) · 2.98 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "zinzen-frontend",
"version": "0.1.0",
"private": true,
"lint-staged": {
"*.{js,ts,tsx,css,md,json}": [
"prettier --write"
]
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@jest/globals": "^28.1.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^11.2.7",
"@types/node": "^20.0.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@types/uuid": "^8.3.4",
"antd": "^5.4.3",
"crypto-js": "^4.2.0",
"dexie": "^3.2.3",
"dexie-export-import": "^4.0.7",
"i18next": "^21.6.11",
"i18next-browser-languagedetector": "^6.1.3",
"moment": "^2.30.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-i18next": "^11.15.4",
"react-query": "^3.39.3",
"react-router-dom": "^6.23.1",
"recoil": "^0.7.1",
"regenerator-runtime": "^0.13.9",
"sass": "^1.50.0",
"ts-node": "^10.9.2",
"uuidv4": "^6.2.13",
"vite": "^5.4.8",
"workbox-core": "^5.1.4",
"workbox-expiration": "^5.1.4",
"workbox-precaching": "^5.1.4",
"workbox-routing": "^5.1.4",
"workbox-strategies": "^5.1.4",
"yui-lint": "^0.2.0"
},
"scripts": {
"dev": "vite",
"build": "CI=false && vite build ",
"build-local": "vite build ",
"tsc": "tsc",
"tsc-build": "tsc && vite build ",
"ts-check-and-build": "vite build",
"https-preview": "CI=false && vite build && serve dist",
"preview": "vite preview",
"test": "jest --verbose ./src/__tests__",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint-fix": "eslint ./ --fix",
"format": "prettier --write .",
"format-all": "prettier --write .",
"prepare": "husky install",
"playwright": "playwright test"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@playwright/test": "^1.47.2",
"@types/crypto-js": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^8.0.3",
"jest": "^27.5.1",
"lint-staged": "^12.5.0",
"prettier": "^3.0.1",
"serve": "^14.1.1",
"tslint": "^6.1.3",
"typescript": "^4.7.3",
"vite-plugin-pwa": "^0.20.5"
}
}