-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 957 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 957 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
31
32
33
34
35
36
37
38
39
{
"name": "thbmusic",
"version": "1.0.0",
"description": "THBWiki's Music API Server",
"main": "app.ts",
"_moduleAliases": {
"@": "./dist"
},
"scripts": {
"dev": "set NODE_ENV=development&& nodemon -e ts --exec \"yarn run serve\"",
"serve": "ts-node src/app.ts",
"build": "tsc"
},
"author": "Sawashiro Alice",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"got": "11",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"mysql2": "^3.0.1",
"redis": "^4.6.5",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.11"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.16",
"@types/lodash": "^4.14.195",
"@types/node": "^18.11.18",
"@types/redis": "^4.0.11",
"nodemon": "^2.0.21",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}