-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.32 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
{
"name": "ora-hidricos-back",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "DEBUG=app NODE_ENV=development ts-node-dev -r tsconfig-paths/register --inspect --transpile-only --ignore-watch node_modules --respawn src/shared/infrastructure/http/server.ts",
"start": "DEBUG=app NODE_ENV=development ts-node -r tsconfig-paths/register --transpile-only src/shared/infrastructure/http/server.ts",
"typeorm": "NODE_ENV=development ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli",
"test": "jest --detectOpenHandles --runInBand",
"test:watch": "NODE_ENV=test jest --watch --detectOpenHandles",
"collect": "DEBUG=* NODE_ENV=development ts-node -r tsconfig-paths/register src/shared/seed/index.ts"
},
"devDependencies": {
"@types/dotenv-safe": "^8.1.2",
"@types/jest": "^27.5.0",
"@types/node": "^16.10.1",
"@types/pg": "^8.6.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.0",
"prettier": "^2.4.1",
"supertest": "^6.2.3",
"ts-jest": "^28.0.2",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0",
"tsyringe": "^4.6.0",
"typescript": "^4.4.3"
},
"dependencies": {
"@google/earthengine": "^0.1.323",
"@turf/centroid": "^6.5.0",
"@types/axios": "^0.14.0",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/geojson": "^7946.0.8",
"@types/unzipper": "^0.10.5",
"axios": "^0.27.2",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"follow-redirects": "^1.14.8",
"geojson": "^0.5.0",
"moment": "^2.29.4",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.3.0",
"typeorm": "^0.2.37",
"unzipper": "^0.10.11",
"uuid": "^8.3.2"
}
}