-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 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
{
"name": "skillsync_frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"bcrypt": "^6.0.0",
"dotenv": "^17.4.2",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^1.11.0",
"next": "14.2.5",
"pg": "^8.20.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.28",
"uuid": "^14.0.0"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/dotenv": "^6.1.1",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.6.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/supertest": "^7.2.0",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"jest": "^30.3.0",
"postcss": "^8.4.40",
"supertest": "^7.2.2",
"tailwindcss": "^3.4.7",
"ts-jest": "^29.4.9",
"typescript": "^5.5.4"
}
}