-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.73 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
56
57
58
59
60
61
{
"private": true,
"scripts": {
"devgc": "npx functions-framework --target=bitAssist --port=3000",
"dev": "next",
"build": "next build",
"start_next": "next start",
"preexport": "yarn run build",
"export": "next export",
"prestart": "yarn run export",
"start": "serve out",
"lint": "next lint",
"migrate-mongo": "prisma db push",
"prisma-client-regen": "prisma generate",
"postinstall": "node ./postinstall.js"
},
"dependencies": {
"@atomik-color/component": "^1.0.16",
"@chakra-ui/icons": "^2.0.11",
"@chakra-ui/react": "^2.3.5",
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/modifiers": "^6.0.0",
"@dnd-kit/sortable": "^7.0.1",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/outfit": "^4.5.10",
"@monaco-editor/react": "^4.4.5",
"@prisma/client": "^4.4.0",
"@tinymce/tinymce-react": "^4.1.0",
"cors": "^2.8.5",
"framer-motion": "^7.5.3",
"fs-extra": "^10.1.0",
"immer": "^9.0.15",
"jotai": "^1.8.5",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"mongoose": "^6.6.5",
"next": "^12.3.1",
"next-auth": "^4.12.3",
"nextjs-progressbar": "^0.0.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-query": "^3.39.1",
"react-select-search": "^4.1.2"
},
"devDependencies": {
"@google-cloud/functions-framework": "^3.1.2",
"@types/node": "^18.8.3",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"husky": "^8.0.1",
"prisma": "^4.4.0",
"serve": "14.0.1",
"typescript": "4.8.4"
}
}