-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "verso",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"buildnocheck": "vite build",
"gen": "yarn run peggy --plugin ./node_modules/ts-pegjs/src/tspegjs --format es -o src/lang/tidal/parser.ts src/lang/tidal/parser.peggy",
"preview": "vite preview"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.13",
"@chakra-ui/react": "^2.4.3",
"@codemirror/highlight": "^0.19.8",
"@codemirror/lang-javascript": "^0.20.0",
"@codemirror/language": "^6.3.2",
"@codemirror/legacy-modes": "^6.3.1",
"@codemirror/state": "^6.1.4",
"@codemirror/view": "^6.7.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@tabler/icons": "^1.118.0",
"@tauri-apps/api": "^1.2.0",
"@uiw/react-codemirror": "^4.19.4",
"debounce": "^1.2.1",
"dotenv": "^16.0.1",
"framer-motion": "^7.10.0",
"lodash": "^4.17.21",
"peggy": "^2.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-pegjs": "^3.1.0",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@tauri-apps/cli": "^1.2.2",
"@types/node": "^18.11.15",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^3.0.0",
"typescript": "^4.9.3",
"vite": "^4.0.0"
}
}