-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.51 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
45
46
47
48
{
"name": "democredit",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc",
"migrate": "npx knex migrate:latest --knexfile ./src/db/knexfile.ts",
"rollback": "npx knex migrate:rollback --knexfile ./src/db/knexfile.ts",
"seed": "npx knex seed:run --knexfile ./src/db/knexfile.ts",
"migrate:production": "npx knex migrate:latest --knexfile ./dist/db/knexfile.js",
"rollback:production": "npx knex migrate:rollback --knexfile ./dist/db/knexfile.js",
"seed:production": "npx knex seed:run --knexfile ./src/db/knexfile.ts",
"test": "mocha --require ts-node/register --recursive src/**/*.test.ts",
"test:watch": "mocha --watch --require ts-node/register --recursive src/**/*.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"knex": "^2.3.0",
"mysql": "^2.18.1",
"sqlite3": "^5.1.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/mocha": "^10.0.0",
"@types/node": "^18.8.3",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}