-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 890 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
{
"name": "omikuji",
"version": "1.0.4",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"postbuild": "cp -r src/icons public/",
"preview": "vite preview"
},
"dependencies": {
"localforage": "^1.10.0",
"onsenui": "^2.11.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-onsenui": "^1.11.5"
},
"devDependencies": {
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-onsenui": "^2.9.17",
"@vitejs/plugin-react": "^1.2.0",
"typescript": "^4.6.2",
"vite": "^2.8.5",
"vite-plugin-pwa": "^0.11.13"
},
"optionalDependencies": {
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-react": "^7.28.0",
"prettier": "^2.5.1"
}
}