-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 966 Bytes
/
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
{
"name": "week-app",
"discription": "Discover dates and week numbers effortlessly with our user-friendly interface.",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"prettier:check": "prettier --check --ignore-path .gitignore . --loglevel warn",
"prettier:fix": "prettier --write --ignore-path .gitignore .",
"test": "jest",
"validate": "npm run prettier:check && tsc && npm run test",
"build": "npm run validate && vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/jest": "29.5.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@vitejs/plugin-react": "3.1.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"prettier": "2.8.7",
"ts-jest": "29.0.5",
"typescript": "^4.9.5",
"vite": "4.2.3",
"vite-plugin-svgr": "2.4.0"
}
}