-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.2 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 4.2 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "next-launch",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "next build",
"build:css": "yarn tailwindcss -i",
"build:static": "next build && next export",
"build:analyze": "ANALYZE=true yarn build",
"dev": "next dev",
"docker:compose": "docker compose -f docker-compose.yml up -d && docker compose logs -f -t >> docker.log",
"lint": "next lint",
"lint-staged": "lint-staged",
"plop": "plop",
"prepare": "husky install",
"prettier": "prettier --write ./",
"prisma": "prisma",
"prisma:generate": "prisma generate",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate:prod": "prisma migrate deploy",
"prisma:migrate:reset": "prisma migrate reset",
"prisma:seed": "prisma db seed",
"prisma:studio": "prisma studio",
"start": "next start",
"test": "yarn test:unit && yarn test:integration && yarn test:e2e",
"test:e2e:create": "dotenv cross-var playwright codegen '%SERVER_DOMAIN%:%SERVER_PORT%'",
"test:e2e": "playwright test",
"test:integration": "jest --verbose --passWithNoTests ./integration",
"test:unit": "jest --verbose",
"test:unit:watch": "jest --verbose --watchAll"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@heroicons/react": "^2.0.11",
"@next-auth/prisma-adapter": "^1.0.6",
"@prisma/client": "^4.9.0",
"@sendgrid/mail": "^7.7.0",
"@svgr/webpack": "^6.3.1",
"@types/uuid": "^8.3.4",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"classnames": "^2.3.1",
"cloudinary": "^1.30.0",
"cross-var": "^1.1.0",
"csvtojson": "^2.0.10",
"date-fns": "^2.28.0",
"dotenv-cli": "^7.2.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"final-form": "^4.20.7",
"flowbite": "^1.4.7",
"form-data": "^4.0.0",
"handlebars-loader": "^1.7.2",
"hooks-for-redux": "^2.2.1",
"json2csv": "^5.0.7",
"lodash": "^4.17.21",
"logrocket": "^3.0.1",
"multer": "^1.4.5-lts.1",
"next": "^13.4.1",
"next-auth": "^4.22.1",
"next-connect": "^0.13.0",
"next-pwa": "^5.6.0",
"prisma": "^4.9.0",
"query-string": "^7.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.2",
"react-final-form": "^6.5.9",
"react-final-form-listeners": "^1.0.3",
"react-query": "^3.39.2",
"react-select": "^5.3.2",
"react-spinners": "^0.11.0",
"react-toastify": "^9.0.5",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"remove": "^0.1.5",
"sass": "^1.53.0",
"sharp": "^0.30.5",
"tailwindcss": "^3.0.24",
"universal-cookie": "^4.0.4",
"uuid": "^9.0.0",
"xml2js": "^0.4.23",
"zod": "^3.17.3"
},
"devDependencies": {
"@faker-js/faker": "^8.0.0",
"@next/bundle-analyzer": "^13.4.1",
"@playwright/test": "^1.24.1",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/line-clamp": "^0.4.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^13.3.0",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/dropzone": "^5.7.4",
"@types/jest": "^27.4.1",
"@types/json2csv": "^5.0.3",
"@types/lodash": "^4.14.182",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.19",
"@types/react-final-form-listeners": "^1.0.0",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"autoprefixer": "^10.4.7",
"babel-jest": "^27.5.1",
"eslint": "^8.9.0",
"eslint-config-next": "^13.4.1",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"msw": "^0.41.0",
"plop": "^3.0.5",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1",
"react-test-renderer": "^18.2.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.8.0",
"typescript": "^4.5.5"
},
"lint-staged": {
"./src/**/*.{js,ts,jsx,tsx}": [
"next lint --fix --cache .",
"prettier --write"
]
},
"packageManager": "yarn@3.5.1"
}