-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.69 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
50
51
52
53
54
55
{
"name": "space",
"author": "denosaurabh",
"version": "0.1.3",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start-https": "local-ssl-proxy --key localhost-key.pem --cert localhost.pem --source 4001 --target 3001",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"dependencies": {
"@next/bundle-analyzer": "^11.1.2",
"@radix-ui/react-alert-dialog": "^0.0.19",
"@radix-ui/react-context-menu": "^0.0.23",
"@radix-ui/react-id": "^0.0.6",
"@radix-ui/react-label": "^0.0.14",
"@radix-ui/react-popover": "^1.0.5",
"@radix-ui/react-separator": "^0.0.14",
"@radix-ui/react-slider": "^0.0.16",
"@radix-ui/react-switch": "^0.0.14",
"@radix-ui/react-tooltip": "^1.0.5",
"@stitches/react": "^1.2.5",
"@svgr/webpack": "^5.5.0",
"cross-env": "^7.0.3",
"dayjs": "^1.10.7",
"idb-keyval": "^5.0.6",
"immer": "^9.0.5",
"markdown-to-jsx": "^7.1.3",
"nanoid": "^3.1.23",
"next": "12",
"next-pwa": "^5.2.23",
"next-seo": "^4.26.0",
"preact": "^10.5.14",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-rnd": "^10.3.3",
"react-shortcuts-hook": "^1.1.2",
"swr": "^0.5.6",
"zustand": "^3.5.5"
},
"license": "GPL-3.0-only",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.0",
"eslint": "^7.30.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"next-compose-plugins": "^2.2.1",
"prettier": "^2.3.2",
"typescript": "4.8.3"
}
}