generated from justinfernald/vite-react-mobx-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
40
41
42
43
44
45
46
47
48
49
{
"private": "true",
"name": "5moku",
"version": "0.0.0",
"author": "Justin Fernald",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"lint:format": "prettier . --list-different --write",
"lint": "yarn lint:format && yarn lint:fix",
"lint:pre-commit": "eslint . --max-warnings=0",
"type-check": "tsc"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"mobx": "^6.6.2",
"mobx-react-lite": "^3.4.3",
"peerjs": "^1.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-router-dom": "^6.24.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@emotion/babel-plugin": "^11.10.5",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/react-modal": "^3.16.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.41.0",
"@vitejs/plugin-react": "^2.2.0",
"babel-loader": "^8.2.5",
"eslint": "^8.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"prettier": "^2.7.1",
"typescript": "^4.8.4",
"vite": "^3.2.7",
"vite-plugin-pwa": "^0.20.0",
"vite-plugin-wasm": "^3.3.0"
},
"license": "MIT"
}