-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.31 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": "clean-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/nickygb/clean-api.git",
"author": "<[email protected]>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.2",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"inversify": "^6.0.1",
"inversify-binding-decorators": "^4.0.0",
"knex": "^1.0.4",
"knex-aurora-data-api-client": "^1.7.0",
"reflect-metadata": "^0.1.13",
"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.23",
"@types/swagger-ui-express": "^4.1.3",
"aws-sdk": "^2.1106.0",
"concurrently": "^7.0.0",
"eslint": "^8.12.0",
"kill-port": "^1.6.1",
"mysql": "^2.18.1",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"scripts": {
"migration:make": "npx knex --knexfile migrations/knexfile.ts migrate:make -x ts",
"migrate:upAll": "npx knex --knexfile migrations/knexfile.ts migrate:latest",
"start:db": "docker-compose up -d && yarn migrate:upAll",
"stop:db": "docker-compose down -v",
"build": "tsoa spec-and-routes && tsc",
"dev": "NODE_ENV=local concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\""
}
}