-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "blog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prebuild": "ts-node ./src/scripts/copy-assets",
"build": "npx tsc",
"dev": "concurrently \"npx tsc -w\" \"nodemon --env-file=.env dist/index.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express-validator": "^3.0.0",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.4",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"bcryptjs": "^2.4.3",
"concurrently": "^8.2.2",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-ejs-layouts": "^2.5.1",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.2",
"morgan": "^1.10.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/express-ejs-layouts": "^2.5.4",
"@types/shelljs": "^0.8.15",
"shelljs": "^0.8.5",
"ts-node": "^10.9.2"
}
}