-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "cooking-blog",
"version": "1.0.0",
"description": "cooking blog",
"main": "index.js",
"author": "mohamed <s2000588@edu.bc.fi>",
"license": "MIT",
"scripts": {
"compile": "tsc -p backend/tsconfig.json",
"start": "ts-node backend/index.ts",
"tsc": "tsc -w backend/index.ts",
"dev": "tsx watch backend/index.ts",
"server": "nodemon backend/index.ts",
"prod": "tsc && node ./build/index.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend"
},
"dependencies": {
"bcrypt": "^5.1.0",
"dotenv": "^16.1.4",
"envalid": "^7.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.2.4",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.1",
"slugify": "^1.6.6",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/multer": "^1.4.7",
"tsx": "^3.12.7"
}
}