-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 KB
/
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
37
38
39
40
41
42
43
44
{
"name": "better-express-api-structure-ts",
"version": "0.9.1",
"description": "This is better project structure for node backend plus frontend application",
"main": "src/server.ts",
"scripts": {
"dev": "nodemon src/app.ts",
"pre-build": "rm -rf ./dist/",
"build": "npm run pre-build && tsc -p . && npm run post-build",
"post-build": "cp -r ./src/public ./dist/public",
"start": "node dist/app.js"
},
"keywords": [
"project-structure",
"node",
"express",
"typescript"
],
"author": "Deepanshu Kushwaha",
"license": "MIT",
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.6",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^4.1.2",
"nodemon": "^2.0.6",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-bouncer": "^0.2.0",
"helmet": "^4.2.0",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.0.0-rc.5",
"swagger-ui-express": "^4.1.5"
}
}