forked from fga-eps-mds/2022-2-Alectrion-EquipamentApi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·74 lines (74 loc) · 2.44 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "2022-1-sgpti-gateway",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"typeorm": "ts-node-dev node_modules/.bin/typeorm",
"migration:generate": "npm run typeorm -- migration:generate src/db/migrations/default -d src/db/config.ts",
"migration:run": "npm run typeorm -- migration:run -d src/db/config.ts",
"migration:revert": "npm run typeorm -- migration:revert -d src/db/config.ts",
"dev": "ts-node-dev --respawn --transpile-only src/main.ts",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "npm t -- --watch",
"test:staged": "npm t -- --findRelatedTests",
"test:all": "CI=true npm run test -- --coverage",
"test:integration": "npm t -- --config ./jest.integration.config.js",
"lint": "eslint ./",
"lint:fix": "yarn lint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fga-eps-mds/2022-1-SGPTI-EquipamentApi.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fga-eps-mds/2022-1-SGPTI-EquipamentApi/issues"
},
"homepage": "https://github.com/fga-eps-mds/2022-1-SGPTI-EquipamentApi#readme",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/faker": "5.5.9",
"@types/jest": "^28.1.6",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.0.6",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"faker": "5.5.3",
"jest": "^27.3.1",
"jest-mock-extended": "^2.0.7",
"jest-sonar": "^0.2.12",
"prettier": "^2.7.1",
"prettier-config-standard": "^5.0.0",
"supertest": "^6.3.3",
"ts-jest": "^27.0.7",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.11"
}
}