-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 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
{
"name": "react-cv-project-template-update",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "jest --runInBand",
"test:part1": "jest __tests__/part1",
"test:part2": "jest __tests__/part2"
},
"dependencies": {
"bcrypt": "^6.0.0",
"mongodb": "^7.0.0",
"mongoose": "^9.0.0",
"next": "16.0.0",
"next-auth": "^4.24.13",
"react": "19.2.0",
"react-dom": "19.2.0"
},
"engines": {
"node": ">=20 <21"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@tailwindcss/postcss7-compat": "^2.2.17",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.0.0",
"@types/bcrypt": "^6.0.0",
"@types/jest": "^29.5.12",
"@types/mongoose": "^5.11.96",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.22",
"babel-jest": "^29.7.0",
"eslint": "^9",
"eslint-config-next": "16.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.18",
"typescript": "^5.6.0"
}
}