-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.63 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
49
50
51
52
53
54
55
56
{
"name": "backend-life-journal",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"dev": "ts-node-dev --respawn --transpileOnly ./app.ts",
"prod": "tsc && node ./build/app.js",
"test": "jest --setupFiles dotenv/config",
"test:watch": "jest --watch --setupFiles dotenv/config",
"testleak": "jest --runInBand --detectOpenHandles --setupFiles dotenv/config"
},
"author": "Gutavo Morais (@Guttz)",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.0",
"@types/helmet": "0.0.47",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.0.14",
"@types/supertest": "^2.0.10",
"axios": "^0.19.2",
"babel-plugin-transform-typescript-metadata": "^0.3.0",
"bcryptjs": "^2.4.3",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-winston": "^4.0.3",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"ts-node-dev": "^1.0.0-pre.44",
"typedi": "^0.8.0",
"typeorm": "^0.2.25",
"typeorm-typedi-extensions": "^0.2.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
}
}