-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "api-waveform",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"build": "tsoa spec-and-routes && tsc",
"start": "node build/src/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Barbaro Javier",
"license": "ISC",
"dependencies": {
"@tsoa/runtime": "^6.0.0",
"audio-decode": "^2.2.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"esm": "^3.2.25",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"nodemon": "^3.0.3",
"swagger-ui-express": "^5.0.0",
"tsoa": "^6.0.1",
"web-audio-api": "^0.2.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-validator": "^3.0.0",
"@types/node": "^20.11.16",
"@types/swagger-ui-express": "^4.1.6",
"concurrently": "^8.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}