-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.49 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
{
"name": "portfolio",
"version": "1.0.0",
"description": "Repository that seeks to showcase my knowledge and skills",
"main": "index.js",
"scripts": {
"build": "prisma generate && next build",
"start": "next start",
"dev": "npm run services:up && npm run wait:postgres && npm run migrations:up && next dev",
"services:up": "docker compose -f src/infra/compose.yaml up -d",
"services:stop": "docker compose -f src/infra/compose.yaml stop",
"services:down": "docker compose -f src/infra/compose.yaml down",
"lint:prettier:check": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"lint:eslint:check": "eslint .",
"test": "npm run services:up && concurrently -n next,jest --hide next -k -s command-jest \"next dev\" \"jest --runInBand --verbose\"",
"test:watch": "jest --watchAll",
"wait:postgres": "tsx ./src/assets/utils/wait-for-postgres.js",
"migrations:up": "npx prisma migrate deploy && npm run migrations:populate",
"migrations:create": "npx prisma migrate dev",
"migrations:populate": "tsx ./prisma/seed.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@popperjs/core": "^2.11.8",
"@prisma/client": "^5.11.0",
"@react-input/mask": "^1.0.20",
"async-retry": "^1.3.3",
"bootstrap": "^5.3.3",
"chart.js": "^4.4.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.1",
"next": "^13.1.6",
"next-connect": "^1.0.0-next.4",
"nodemailer": "^6.9.9",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-helmet": "^6.1.0",
"react-loader-spinner": "^6.1.6",
"react-rewards": "^2.0.4",
"styled-components": "^6.1.6",
"sweetalert2": "^11.10.4"
},
"devDependencies": {
"@types/async-retry": "^1.4.8",
"@types/jest": "^29.5.11",
"@types/next": "^9.0.0",
"@types/pg": "^8.10.9",
"@types/react": "^18.2.46",
"@types/react-helmet": "^6.1.11",
"@types/supertest": "^6.0.2",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"prisma": "^5.11.0",
"sass": "^1.71.1",
"supertest": "^7.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsx": "^4.15.7",
"typescript": "^5.3.3"
}
}