-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "jigsawer",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.prod.json && vite build",
"lint": "eslint src/ --ext .ts --ext .tsx",
"preview": "vite preview",
"start": "npm run build && npm run preview",
"test": "NODE_ENV=test jest"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/jest": "29.2.4",
"@types/node": "16.18.10",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"@vitejs/plugin-react": "3.0.0",
"eslint": "8.30.0",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"msw": "0.49.2",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.9.4",
"vite": "4.0.2",
"whatwg-fetch": "3.6.2"
}
}