-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.46 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.46 KB
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
45
46
47
{
"name": "api-rest-node-typescript",
"version": "1.0.0",
"main": "index.js",
"author": "Elyon Ortiz",
"license": "MIT",
"private": false,
"scripts": {
"start": "ts-node-dev ./src/index.ts",
"production": "node ./build/index.js",
"postinstall": "tsc",
"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",
"test": "jest"
},
"dependencies": {
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.2",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"http-status-codes": "2.2.0",
"jest": "^29.5.0",
"jsonwebtoken": "^9.0.0",
"knex": "^2.4.2",
"pg": "^8.11.0",
"ts-jest": "^29.1.0",
"yup": "^1.1.1"
},
"devDependencies": {
"sqlite3": "^5.1.6",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.17",
"@types/http-status-codes": "^1.2.0",
"@types/node": "^18.16.2",
"@types/pg": "^8.10.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"supertest": "^6.3.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}