-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 991 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 991 Bytes
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
{
"name": "react-mobx-starter",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"typecheck": "npx tsc --noEmit",
"prettier:fix": "npx prettier --write \"src/**/*.{ts,tsx,css}\"",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"classnames": "^2.3.2",
"mobx": "^6.10.2",
"mobx-log": "^2.1.1",
"mobx-react-lite": "^4.0.5",
"mobx-react-observer": "^1.1.0",
"mobx-utils": "^6.0.8",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-loading-skeleton": "^3.3.1",
"react-transition-group": "^4.4.5",
"uuid": "^11.1.0",
"vitest": "^3.1.3"
},
"devDependencies": {
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@types/react-transition-group": "^4.4.10",
"@vitejs/plugin-react": "^4.2.1",
"sass": "^1.69.5",
"typescript": "^5.3.3",
"vite": "^5.0.5"
}
}