-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 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
{
"name": "test-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx",
"test": "vitest run",
"e2e:open": "cypress open",
"e2e:run": "cypress run",
"prepare": "husky install"
},
"dependencies": {
"axios": "^1.2.2",
"dayjs": "^1.11.7",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"js-cookie": "^3.0.1",
"mobx": "^6.7.0",
"mobx-react": "^7.6.0",
"mobx-state-tree": "^5.1.7",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "6"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/js-cookie": "^3.0.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"@vitest/coverage-c8": "^0.26.2",
"cypress": "^12.2.0",
"eslint": "^8.30.0",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.2",
"jsdom": "^20.0.3",
"lint-staged": "^13.1.0",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vitest": "^0.26.2"
}
}