-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 975 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
35
{
"name": "mio",
"version": "1.0.0",
"description": "Making music with a sweet backend.",
"main": "index.js",
"author": "FelipeSazz <[email protected]>",
"license": "MIT",
"scripts": {
"start": "ts-node src/main.ts",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify src/main.ts"
},
"devDependencies": {
"@types/express": "4.17.11",
"@types/ioredis": "^4.26.1",
"@types/mongoose": "5.10.3",
"@types/morgan": "^1.9.2",
"ts-node-dev": "1.0.0-pre.62",
"tsconfig-paths": "3.9.0"
},
"dependencies": {
"@typegoose/typegoose": "^7.6.0",
"@types/node": "^14.10.1",
"axios": "^0.21.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"ioredis": "^4.27.1",
"mongoose": "5.10.18",
"morgan": "^1.10.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"yaml": "^1.10.0"
}
}