-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 939 Bytes
/
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
{
"name": "jwt-api-typeorm",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"dev": "npx nodemon --exec ts-node --files src/index.ts --ignore __tests__",
"typeorm:cli": "npx ts-node ./node_modules/typeorm/cli.js",
"pretest": "SET NODE_ENV=test& yarn typeorm:cli migration:run",
"test": "SET NODE_ENV=test& jest --verbose"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.0",
"@types/supertest": "^2.0.10",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.31"
}
}