-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.17 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.17 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
{
"name": "application-portal",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:db:up": "docker-compose -p application-portal -f infrastructure/dev/docker-compose.yaml --env-file .env up -d",
"dev:db:down": "docker-compose -p application-portal -f infrastructure/dev/docker-compose.yaml --env-file .env down",
"dev:db:reset": "echo delete the ./infrastructure/dev/mongo-data directory manually",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:unit": "jest --testMatch=\"**/*.test.ts?(x)\"",
"test:integration": "cypress run --browser chrome",
"test:dev": "cypress open",
"prepare": "husky"
},
"dependencies": {
"-": "^0.0.1",
"@auth/mongodb-adapter": "^3.7.3",
"@google-cloud/storage": "^6.5.2",
"@rollbar/react": "^0.12.0-beta",
"antd": "^4.18.2",
"axios": "^0.21.1",
"check-files": "^0.0.2",
"file-saver": "^2.0.5",
"joi": "^17.4.2",
"mongodb": "^6.10.0",
"next": "13",
"next-auth": "^4.24.10",
"nodemailer": "^6.7.0",
"prop-types": "^15.7.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollbar": "^2.26.4",
"sass": "^1.42.1",
"swr": "^1.1.2-beta.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "12.1.2",
"@types/file-saver": "^2.0.4",
"@types/jest": "^27.0.1",
"@types/node": "*",
"@types/nodemailer": "^6.4.4",
"@types/react": "17.0.13",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.0.0",
"babel-jest": "^29.1.2",
"cypress": "^9.2.0",
"eslint": "^7.30.0",
"eslint-config-next": "13",
"eslint-config-prettier": "^8.3.0",
"husky": ">=6",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.5",
"jest-environment-jsdom": "^27.0.1",
"lint-staged": ">=10",
"prettier": "^2.3.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.3.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
},
"engines": {
"node": "22"
}
}