-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 858 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 858 Bytes
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
{
"name": "express-api",
"version": "1.0.0",
"main": "build/src/server.js",
"scripts": {
"build": "tsoa spec-and-routes && tsc",
"start": "node build/src/server.js",
"dev": "concurrently 'nodemon' 'nodemon -x tsoa spec-and-routes'"
},
"repository": "https://github.com/SubCube/express-api.git",
"author": "Максим Бельфер <maxbelf1@gmail.com>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.1",
"express": "^4.17.2",
"swagger-ui-express": "^4.3.0",
"tsoa": "^3.14.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.16",
"@types/nodemon": "^1.19.1",
"@types/swagger-ui-express": "^4.1.3",
"concurrently": "^7.0.0",
"nodemon": "^2.0.15",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}