-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.5 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
{
"name": "devsync",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run dev:next\" \"npm run dev:server\"",
"dev:next": "next dev",
"dev:server": "ts-node-dev --respawn --transpile-only server.ts",
"build": "next build && tsc",
"start": "next start & node build/server.js",
"migrate": "node migrations/migrate.js",
"test": "jest",
"docker:up": "docker-compose up --build",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f"
},
"keywords": [],
"author": "Erica Thompson",
"license": "ISC",
"dependencies": {
"axios": "^1.7.9",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"next": "^15.1.7",
"pg": "^8.13.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.8",
"@types/mongoose": "^5.11.97",
"@types/node": "^22.13.1",
"@types/pg": "^8.11.11",
"@types/react": "19.0.10",
"concurrently": "^9.1.2",
"mongoose": "^8.10.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}