-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 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
{
"name": "resume-builder-backend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --runInBand"
},
"dependencies": {
"@prisma/client": "^5.4.2",
"@types/pg": "^8.10.5",
"@types/sequelize": "^4.28.16",
"babel-jest": "^29.7.0",
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"identity-obj-proxy": "^3.0.0",
"jsonschema": "^1.4.1",
"jsonwebtoken": "^9.0.2",
"next": "13.5.4",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"react": "^18",
"react-dom": "^18",
"request": "^2.88.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "13.5.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"prisma": "^5.4.2",
"tsup": "^7.2.0",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
}
}