-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
executable file
·68 lines (68 loc) · 1.89 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
{
"private": true,
"scripts": {
"dev": "ts-node --project tsconfig.server.json server.ts",
"build": "next build && tsc --project tsconfig.server.json",
"start": "node dist/server.js",
"gqty:generate-schema": "gqty generate",
"find:unused": "npx next-unused",
"prettier": "prettier --write .",
"lint": "next lint",
"lint:fix": "eslint . --fix",
"type-check": "tsc"
},
"pre-commit": [
"lint",
"lint:fix",
"prettier"
],
"dependencies": {
"@headlessui/react": "^1.4.1",
"@heroicons/react": "v1",
"@popperjs/core": "2.9.1",
"@sentry/nextjs": "^7.70.0",
"@supabase/supabase-js": "^2.0.4",
"@svgr/cli": "^6.1.1",
"@types/express": "^4.17.17",
"encoding": "^0.1.13",
"eslint-plugin-simple-import-sort": "^10.0.0",
"express": "^4.18.2",
"express-rate-limit": "^6.10.0",
"graphql": "^16.0.1",
"lodash": "^4.17.21",
"next": "^13.4.9",
"next-plausible": "^3.9.1",
"next-redux-wrapper": "^7.0.5",
"next-themes": "^0.2.1",
"nextjs-toploader": "^1.6.6",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"react-h5-audio-player": "^3.8.1",
"react-player": "^2.9.0",
"react-redux": "^7.2.5",
"react-toastify": "^9.0.8",
"redux": "^4.1.1",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"rooks": "^7.4.0"
},
"devDependencies": {
"@gqty/cli": "3.3.0",
"@netlify/plugin-nextjs": "^4.24.0",
"@svgr/webpack": "^8.1.0",
"@types/lodash": "^4.14.197",
"autoprefixer": "^10.2.6",
"dotenv": "^16.3.1",
"eslint": "8.44.0",
"eslint-config-next": "^13.4.9",
"eslint-plugin-tailwindcss": "^3.13.0",
"postcss": "^8.3.5",
"pre-commit": "^1.2.2",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.5.3",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}