-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
43
44
{
"name": "api-rest-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "Eduardo Pimenta",
"license": "MIT",
"scripts": {
"start": "ts-node-dev ./src/index.ts",
"production": "node ./build/index.js",
"postinstall": "tsc",
"test": "jest",
"knex:rollback-all": "knex --knexfile ./src/server/database/knex/Environment.ts migrate:rollback --all",
"knex:rollback": "knex --knexfile ./src/server/database/knex/Environment.ts migrate:rollback",
"knex:migrate": "knex --knexfile ./src/server/database/knex/Environment.ts migrate:latest",
"knex:seed": "knex --knexfile ./src/server/database/knex/Environment.ts seed:run"
},
"dependencies": {
"http-status-code": "^2.1.0",
"express": "^4.18.2",
"sqlite3": "^5.1.7",
"dotenv": "^16.4.1",
"knex": "^3.1.0",
"yup": "^1.3.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@types/http-status-codes": "^1.2.0",
"@types/express": "^4.17.21",
"@types/supertest": "^6.0.2",
"@types/jest": "^29.5.12",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"yu": "^1.0.0"
},
"engines": {
"node": "16.x"
}
}