-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.99 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
{
"name": "staticshield",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn prepare-db && yarn minify && next build",
"start": "next start",
"minify": "npx parcel build packages/script.js --dist-dir public",
"format": "npx prettier --write \"**/*.{js,ts,jsx,tsx,json,css,md,html}\"",
"lint": "next lint",
"prepare-db": "node scripts/prepare-db",
"generate-pwa-assets": "cd ./public/icons/ && npx pwa-asset-generator ../staticshield-rounded.png -m ../manifest.json -d -q 100 -u -f -o false"
},
"dependencies": {
"@auth0/nextjs-auth0": "^1.5.0",
"@fontsource/ibm-plex-mono": "^4.5.0",
"@fontsource/inter": "^4.4.5",
"@geist-ui/react": "^2.1.5",
"@geist-ui/react-icons": "^1.0.1",
"@hookform/resolvers": "^2.8.0",
"@types/cors": "^2.8.12",
"@types/react-hamburger-menu": "^0.0.4",
"autoprefixer": "^10.3.6",
"axios": "^0.21.2",
"bcrypt": "^5.0.1",
"crypto-js": "^4.1.1",
"date-fns": "^2.24.0",
"dumb-passwords": "^0.2.1",
"framer-motion": "^4.1.17",
"human-date": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"lru-cache": "^6.0.0",
"next": "^11.1.0",
"next-pwa": "^5.3.1",
"next-seo": "^4.26.0",
"nextjs-progressbar": "^0.0.11",
"postcss": "^8.3.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hamburger-menu": "^1.2.1",
"react-hook-form": "^7.16.1",
"react-loading-skeleton": "^2.2.0",
"react-rotating-text": "^1.4.1",
"swr": "^1.0.1",
"tailwindcss": "^2.2.7",
"use-web3forms": "^1.2.1",
"zod": "^3.7.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/crypto-js": "^4.0.2",
"@types/dumb-passwords": "^0.2.1",
"@types/human-date": "^1.4.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/lru-cache": "^5.1.1",
"@types/react": "^17.0.24",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.2",
"parcel": "^2.5.0",
"pwa-asset-generator": "^4.3.6",
"typescript": "^4.4.3"
}
}