-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1007 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
34
35
36
37
38
39
{
"name": "plutus",
"private": false,
"version": "0.1.0",
"scripts": {
"pretty": "prettier --write \"./src/**/*.{ts,tsx,json}\"",
"dev": "vite",
"build": "vite build",
"build-debug": "vite build --mode debug",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@chakra-ui/react": "^2.3.5",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"framer-motion": "^6.5.1",
"immer": "^9.0.16",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-kawaii": "^0.18.0",
"react-router-dom": "^6.4.1",
"ts-results": "^3.3.0",
"uuid": "^9.0.0",
"zustand": "^4.1.1"
},
"devDependencies": {
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-kawaii": "^0.17.0",
"@vitejs/plugin-react": "^2.0.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"vite": "^3.0.3",
"vitest": "^0.19.1"
}
}