This repository has been archived by the owner on May 1, 2023. It is now read-only.
generated from smiths/capTemplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 3.36 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
82
83
84
85
86
87
88
89
{
"name": "project-sayyara",
"version": "0.1.0",
"private": true,
"homepage": "https://sayyara.vercel.app",
"repository": "https://github.com/arkinmodi/project-sayyara",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:docs": "docker compose -f docker-compose-docs.yml run --rm docs",
"build:typedoc": "typedoc ./src",
"start": "next start",
"postinstall": "prisma generate",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:seed": "prisma db seed",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest --group=unit --config=jest.unit.config.js",
"test:integration": "npm run docker:up && npm run db:push -- --force-reset && jest --runInBand --group=integration --config=jest.integration.config.js",
"test:coverage": "npm run test && npm run test:coverage:report",
"test:coverage:report": "rm -rf coverage && mkdir coverage && cp coverage-integration/coverage-final.json coverage/coverage-integration.json && cp coverage-unit/coverage-final.json coverage/coverage-unit.json && nyc report --temp-dir coverage --reporter html",
"lint": "npm run lint:latex && npm run lint:types && npm run lint:prisma && npm run lint:prettier && npm run lint:eslint",
"lint:eslint": "next lint",
"lint:prettier": "prettier --write '**/*.{ts,tsx,json,js,mjs,css,yml,yaml}'",
"lint:latex": "latexindent -silent -local -modifylinebreaks -overwrite docs/**/*.tex && latexindent -silent -local -modifylinebreaks -overwrite docs/**/**/*.tex && latexindent -silent -local -modifylinebreaks -overwrite docs/**/**/**/*.tex",
"lint:types": "tsc --project ./tsconfig.json",
"lint:prisma": "prisma format",
"docker:up": "docker compose up -d --wait",
"docker:down": "docker compose down"
},
"dependencies": {
"@prisma/client": "^4.10.1",
"@reduxjs/toolkit": "^1.8.6",
"bcrypt": "^5.1.0",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"md5-hash": "^1.0.1",
"next": "12.3.4",
"next-auth": "^4.13.0",
"next-pwa": "^5.6.0",
"next-redux-wrapper": "^8.0.0",
"primeicons": "^6.0.1",
"primereact": "^8.7.2",
"quill": "^1.3.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.4",
"react-schedule-meeting": "^4.2.0",
"redux": "^4.2.0",
"redux-saga": "^1.2.1",
"reselect": "^4.1.7",
"zod": "^3.20.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/bcrypt": "^5.0.0",
"@types/node": "18.7.23",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.1.1",
"jest-environment-jsdom": "^29.1.1",
"jest-mock-extended": "^3.0.1",
"jest-runner-groups": "^2.2.0",
"node-mocks-http": "^1.11.0",
"nyc": "^15.1.0",
"prettier": "2.7.1",
"prettier-plugin-organize-imports": "^3.2.0",
"prisma": "^4.10.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.27",
"typedoc-plugin-expand-object-like-types": "^0.1.2",
"typedoc-plugin-zod": "^1.0.1",
"typescript": "4.9.3"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"commonjs\"} prisma/seed.ts"
},
"overrides": {
"loader-utils": "^2.0.4"
},
"engines": {
"npm": ">=8.3.0"
}
}