-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 770 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.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"swagger-ui-express": "^4.1.6",
"typescript": "3.3.3333",
"uuid": "^3.3.2"
},
"devDependencies": {
"concurrently": "^2.2.0",
"nodemon": "^2.0.7"
}
}