-
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.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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": "expresstypescriptdevcamper",
"version": "1.0.0",
"description": "Creating DevCamp API with Express/TS",
"main": "/dist/index.js",
"scripts": {
"build": "tsc --build && cp -r src/public dist/public",
"start:dev": "nodemon dist/index.js",
"start:prod": "NODE_ENV=production nodemon dist/index.js",
"start:seeder:d": "ts-node ./src/seeder.ts -d",
"start:seeder:i": "ts-node ./src/seeder.ts -i"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/chalk": "^2.2.4",
"@types/cookie-parser": "^1.4.8",
"@types/express-fileupload": "^1.5.1",
"@types/jsonwebtoken": "^9.0.9",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/nodemailer": "^6.4.17",
"bcryptjs": "^3.0.2",
"colorts": "^0.1.63",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-fileupload": "^1.5.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.12.1",
"morgan": "^1.10.0",
"nodemailer": "^6.10.0",
"slugify": "^1.6.6"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.13.9",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}