-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 768 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
{
"name": "seans-typescript-nodejs-crud-rest-api-boilerplate",
"version": "1.0.1",
"description": "",
"main": "server.js",
"scripts": {
"start": "tsc && node dist/server.js",
"build": "tsc",
"dev": "concurrently --kill-others \"tsc -w\" \"nodemon dist/server.js\""
},
"keywords": [
"typescript",
"nodejs",
"crud",
"rest",
"swagger"
],
"author": "Sean Bradley",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.11",
"@types/node": "^13.13.40",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"swagger-ui-express": "^5.0.0",
"typescript": "^5.2.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.0.1"
}
}