-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.97 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.97 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "tasker",
"version": "0.1.0",
"private": true,
"cacheDirectories": [
".next/cache"
],
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} ./prisma/_seed.ts"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build-render": "yarn db-dev-push && npx prisma generate && yarn db-dev-seed && yarn build",
"db-dev-set": "npx prisma generate && npx prisma migrate dev",
"db-dev-push": "npx prisma db push",
"db-dev-seed": "npx prisma db seed",
"start": "next start -p $PORT",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "yarn run check-format && yarn run check-lint && npm run check-types && yarn run test --watchAll=false && yarn build",
"prepare": "husky install",
"test": "jest test --watchAll --verbose",
"postinstall": "yarn prepare && chmod +x .husky/pre-push"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@next-auth/prisma-adapter": "^1.0.4",
"@prisma/client": "^4.3.1",
"@reduxjs/toolkit": "^1.8.6",
"@splinetool/react-spline": "2.2.2",
"@splinetool/runtime": "^0.9.145",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"chalk": "^5.1.0",
"cheerio": "^1.0.0-rc.12",
"gsap": "^3.11.3",
"metadata-scraper": "^0.2.61",
"multer": "^1.4.5-lts.1",
"next": "12.2.5",
"next-auth": "^4.10.3",
"next-connect": "^0.13.0",
"next-transpile-modules": "^9.0.0",
"nodemailer": "^6.8.0",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "18.2.0",
"socket.io": "^4.5.3",
"socket.io-client": "^4.5.3",
"swiper": "^8.4.5",
"swr": "^1.3.0",
"three": "^0.146.0",
"ts-node": "^10.9.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/bcrypt": "^5.0.0",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.9",
"@types/nodemailer": "^6.4.7",
"@types/react": "^18.0.25",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "18.0.6",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "8.23.1",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"prettier": "^2.7.1",
"prisma": "^4.3.1",
"sass": "^1.55.0",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-scss": "^4.4.0",
"typescript": "^4.9.5"
},
"engines": {
"node": "16.13.0"
},
"volta": {
"node": "16.13.0",
"yarn": "1.19.2"
}
}