-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.56 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.56 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
{
"name": "my-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build:deps": "cd ../types && npm install && npm run build",
"dev": "npm run build:deps && vite",
"build": "npm run build:deps && tsc && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"fix": "prettier --write .",
"preview": "npm run build:deps && vite preview",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"cy:open": "cypress open"
},
"dependencies": {
"@code-differently/types": "file:../types",
"@tanstack/react-query": "^5.62.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.0.2"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.12.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitejs/plugin-react": "^4.3.4",
"cypress": "^13.17.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fixed-jsdom": "^0.0.9",
"prettier": "3.4.2",
"sass": "^1.83.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"vite": "^6.0.3"
}
}