forked from DevNvll/tempest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.21 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"build-static": "next build && next export",
"export": "next export",
"start": "next start -p $PORT",
"generate": "prisma generate",
"migrate": "prisma migrate dev --preview-feature",
"push": "prisma db push --preview-feature",
"cm": "cz"
},
"dependencies": {
"@aws-amplify/ui-components": "^1.1.1",
"@dnd-kit/core": "^2.0.0",
"@dnd-kit/sortable": "^2.0.0",
"@fullhuman/postcss-purgecss": "^1.2.0",
"@prisma/client": "^2.20.1",
"@react-hook/mouse-position": "^4.1.0",
"@tailwindcss/jit": "^0.1.7",
"@types/lodash": "^4.14.168",
"aws-amplify": "^3.3.26",
"aws-sdk": "^2.872.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"clsx": "^1.1.1",
"cookie": "^0.4.1",
"cuid": "^2.1.8",
"formik": "^2.2.6",
"immer": "^9.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"next": "^10.2.3",
"next-connect": "^0.10.1",
"next-google-fonts": "^2.1.0",
"next-images": "^1.4.1",
"next-seo": "^4.7.3",
"pg": "^8.5.1",
"postcss-import": "^12.0.1",
"prisma": "^2.20.1",
"react": "^17.0.1",
"react-contextmenu": "2.14",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dnd-preview": "^6.0.2",
"react-dom": "^17.0.1",
"react-dropzone": "^11.3.2",
"react-hotkeys-hook": "^3.3.0",
"react-icons": "^4.2.0",
"react-modal": "^3.12.1",
"react-query": "^3.13.0",
"react-spinners": "^0.10.6",
"react-toast-notifications": "^2.4.3",
"react-use": "^17.2.1",
"sass": "^1.27.0",
"sharp": "^0.27.2",
"tailwindcss": "^2.1.0",
"uuid": "^8.3.2",
"zustand": "^3.3.3"
},
"devDependencies": {
"@tailwindcss/custom-forms": "^0.2.1",
"@types/node": "^14.14.35",
"@types/react": "^16.9.49",
"autoprefixer": "^10.2.5",
"commitizen": "^4.2.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"postcss": "^8.1.8",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"typescript": "^4.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}