-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.42 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
80
81
{
"name": "bookbyboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:init": "next dev -p 3001",
"dev": "run-s script:generate-manifest dev:init",
"start:local": "ENV=local npm run dev",
"start": "next start",
"build:init": "next build",
"build": "run-s script:generate-manifest build:init",
"build:analyze": "BUNDLE_ANALYZE=true npm run build",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"lint:fix": "eslint '*/**/*.{js,ts,tsx}' --fix",
"script:generate-manifest": "node -r esm scripts/generateManifest.js"
},
"dependencies": {
"@heroicons/react": "^1.0.1",
"@sentry/react": "^6.11.0",
"@sentry/tracing": "^6.11.0",
"@tippyjs/react": "^4.2.6",
"@vercel/analytics": "^1.0.2",
"classnames": "^2.3.2",
"dayjs": "^1.11.9",
"dompurify": "^3.0.5",
"esm": "^3.2.25",
"firebase": "^9.22.1",
"fuse.js": "^6.6.2",
"js-base64": "^3.7.5",
"localstorage-slim": "^2.4.0",
"mixpanel-browser": "^2.47.0",
"nanoid": "^4.0.2",
"next-page-transitions": "^1.0.0-beta.2",
"next-pwa": "^5.6.0",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"pug": "^3.0.3",
"react": "18.2.0",
"react-collapsible": "^2.8.3",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"resend": "^3.4.0",
"sass": "^1.62.0",
"slugify": "^1.6.6",
"unique-names-generator": "^4.7.1",
"url-parse": "^1.5.10",
"use-ssr": "^1.0.25",
"uuid": "^10.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.3.0",
"@types/debug": "^4.1.7",
"@types/dompurify": "^3.0.2",
"@types/google.analytics": "^0.0.42",
"@types/mixpanel-browser": "^2.47.1",
"@types/node": "^18.15.11",
"@types/nprogress": "^0.2.0",
"@types/numeral": "^2.0.2",
"@types/pug": "^2.0.10",
"@types/react": "^18.0.33",
"@types/react-dom": "18.0.11",
"@types/url-parse": "^1.4.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"autoprefixer": "10.4.14",
"dotenv": "^16.0.3",
"eslint": "8.38.0",
"eslint-config-next": "^13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"next": "13.3.0",
"npm-run-all": "^4.1.5",
"postcss": "8.4.21",
"prettier": "^2.8.7",
"raw-loader": "^4.0.2",
"tailwindcss": "3.3.1",
"typescript": "5.0.4"
}
}