-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.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": "be-the-hero-ts",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon src/index.ts",
"test": "cross-env NODE_ENV=test jest",
"migrate:create": "./node_modules/knex/bin/cli.js migrate:make $MIGRATE_NAME --env local",
"migrate:up": "./node_modules/knex/bin/cli.js migrate:latest --env local"
},
"devDependencies": {
"@hapi/joi": "^17.1.1",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/hapi__joi": "^16.0.12",
"@types/jest": "^25.2.1",
"@types/mock-knex": "^0.4.2",
"@types/node": "^13.13.1",
"@types/sinon": "^9.0.0",
"@types/supertest": "^2.0.8",
"jest": "^25.4.0",
"mock-knex": "^0.4.8",
"nodemon": "^2.0.3",
"sinon": "^9.0.2",
"supertest": "^4.0.2",
"ts-jest": "^25.4.0",
"ts-node": "^8.9.0",
"typescript": "^3.8.3"
},
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status-codes": "^1.4.0",
"knex": "^0.21.0",
"mysql2": "^2.1.0"
}
}