-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "zen",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "GPL-3.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:nots": "vite build",
"build:ext": "bash make_extension.sh",
"preview": "vite preview",
"codegen": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@apollo/client": "^3.7.9",
"@mdi/js": "^7.2.96",
"@mdi/react": "^1.6.1",
"@types/react-grid-layout": "^1.3.2",
"bootstrap": "^5.2.3",
"graphql": "^16.6.0",
"rc-slider": "^10.1.1",
"react": "^18.2.0",
"react-bootstrap": "^2.7.2",
"react-datetime-picker": "^5.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-select": "^5.7.2",
"sass": "^1.60.0"
},
"devDependencies": {
"@graphql-codegen/cli": "3.2.1",
"@graphql-codegen/client-preset": "2.1.0",
"@graphql-codegen/introspection": "3.0.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react-swc": "^3.0.0",
"terser": "^5.39.0",
"typescript": "^4.9.5",
"vite": "^4.0.0"
}
}