-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 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
{
"main": "dist/index.js",
"scripts": {
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"build": "babel src/index.ts -d dist",
"dev": "NODE_ENV=development npm run build && nodemon src/index.ts",
"start": "tsc && node dist/index.js",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.226.0",
"@babel/preset-typescript": "^7.18.6",
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"@graphile/postgis": "^0.1.0",
"@types/node": "^18.11.9",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.2",
"express-jwt": "^7.7.5",
"express-oauth2-jwt-bearer": "^1.1.0",
"fs": "^0.0.1-security",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"near-api-js": "^0.45.1",
"near-cli": "^3.4.2",
"near-seed-phrase": "^0.2.0",
"path": "^0.12.7",
"postgraphile": "^4.12.9",
"typescript": "^4.8.4"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/express-fileupload": "^1.4.1",
"@types/lodash": "^4.14.184",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1"
}
}