-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 2.22 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
57
58
59
60
61
62
{
"name": "example-node-api",
"version": "0.0.1",
"description": "",
"main": "dist/app/index.js",
"scripts": {
"build": "rm -rf ./dist && tsc",
"start": "npm run build && nodemon dist/app/index.js",
"dev": "nodemon src/app/index.ts",
"eslint:check": "npx eslint ./src",
"eslint:fix": "npx eslint ./src --fix",
"test:all": "npm run eslint:check && npm run test:unit",
"test:unit": "npx jest test/unit",
"test:unit:coverage": "npx jest --coverage",
"test:e2e": "npx jest test/e2e --forceExit",
"migrate:backoffice:create": "npx ts-node node_modules/typeorm/cli.js migration:create -c backoffice -n",
"migrate:backoffice:run": "npx ts-node node_modules/typeorm/cli.js migration:run -c backoffice",
"migrate:backoffice:revert": "npx ts-node node_modules/typeorm/cli.js migration:revert -c backoffice",
"seed:backoffice:create": "npx ts-node node_modules/typeorm/cli.js migration:create -c seeds-backoffice -n",
"seed:backoffice:run": "npx ts-node node_modules/typeorm/cli.js migration:run -c seeds-backoffice",
"seed:backoffice:revert": "npx ts-node node_modules/typeorm/cli.js migration:revert -c seeds-backoffice"
},
"author": "Iván Córdoba Donet",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.0",
"helmet": "^4.3.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.29",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.2",
"@types/node": "^12.19.12",
"@types/passport": "^1.0.5",
"@types/passport-jwt": "^3.0.3",
"@types/pg": "^7.14.7",
"@types/supertest": "^2.0.10",
"@types/uuid": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"jest": "^26.6.3",
"nodemon": "^1.19.0",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}