-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.24 KB
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
50
51
52
53
{
"name": "ghosts",
"version": "0.4.0",
"private": true,
"repository": "minosss/ghosts",
"prettier": "@yme/prettier-config",
"license": "Apache-2.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^2.2.1",
"@chakra-ui/utils": "^2.0.2",
"@codemirror/commands": "^6.0.1",
"@codemirror/language": "^6.2.0",
"@codemirror/state": "^6.1.0",
"@codemirror/view": "^6.0.2",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@tauri-apps/api": "^1.2.0",
"codemirror": "^6.0.1",
"date-fns": "^2.29.1",
"framer-motion": "^6.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zustand": "4.0.0-rc.1"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@tauri-apps/cli": "^1.2.2",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@vitejs/plugin-react": "^1.3.2",
"@yme/eslint-config-prettier": "^0.7.0",
"@yme/prettier-config": "^0.1.3",
"eslint": "^8.18.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"vite": "^2.9.13"
},
"lint-staged": {
"*.{ts,tsx,json}": [
"eslint --fix"
]
}
}