-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.46 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
{
"name": "amazonia-minada-back",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:geodatin/amazonia-minada-back.git",
"author": "Iago Machado <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "./node_modules/.bin/ts-node-dev --transpile-only --ignore-watch node_modules --respawn src/server.ts",
"build": "tsc -p .",
"production": "pm2-runtime dist/server.js"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"geojson": "^0.5.0",
"json2csv": "^5.0.6",
"mongoose": "^6.0.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.6.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv-safe": "^8.1.2",
"@types/express": "^4.17.13",
"@types/geojson": "^7946.0.8",
"@types/json2csv": "^5.0.3",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^4.2.1",
"prettier": "^2.3.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
}
}