-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 971 Bytes
/
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
{
"name": "mern-shop",
"version": "1.0.0",
"description": "eCommerce applicatin built with SERN stack",
"type": "module",
"main": "backend/dist/server.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/server.js",
"server": "tsx watch backend/server.ts",
"client": "npm run dev --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "codecamp-prem",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.9.1",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"prisma": "^5.9.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.16",
"concurrently": "^8.2.2",
"dotenv": "^16.4.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}