-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.12 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
42
{
"name": "ejsteiner-api",
"version": "0.0.1",
"description": "API made for the ejsteiner website and other random functions",
"module": "commonjs",
"devDependencies": {
"@types/node": "^16.11.10",
"@types/swagger-ui-express": "^4.1.6",
"concurrently": "^8.2.2",
"nodemon": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "4.5.2"
},
"dependencies": {
"@types/express": "^4.17.21",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"mysql2": "^3.9.1",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^5.0.0",
"tsoa": "^6.0.1",
"typeorm": "0.3.20"
},
"scripts": {
"start": "node build/src/index.js",
"typeorm": "typeorm-ts-node-commonjs",
"predev": "npm run swagger",
"prebuild": "npm run swagger",
"build": "tsoa spec && tsc",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec\"",
"swagger": "tsoa spec",
"start:dev": "nodemon"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "ts-node src/index.ts"
}
}