This repository has been archived by the owner on Jul 17, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
104 lines (104 loc) · 3.66 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@distributeaid/shipment-tracker-backend",
"version": "0.0.0-development",
"description": "Backend for organizing aid shipments.",
"repository": {
"type": "git",
"url": "git+https://github.com/distributeaid/shipment-tracker.git"
},
"bugs": {
"url": "https://github.com/distributeaid/shipment-tracker/issues"
},
"homepage": "https://github.com/distributeaid/shipment-tracker#readme",
"scripts": {
"predev": "yarn codegen",
"dev:server": "ts-node-dev --no-notify --respawn --transpile-only src/server/dev",
"dev": "npm-run-all --parallel dev:server codegen:watch",
"start": "./node_modules/.bin/nodemon --ignore frontend --optimize_for_size --max_old_space_size=920 --gc_interval=100 dist/src/server/dev.js",
"prod:server": "./node_modules/.bin/nodemon --optimize_for_size --max_old_space_size=920 --gc_interval=100 dist/src/server/prod.js",
"clean": "rm -rf dist",
"build": "yarn --silent run clean && graphql-codegen && tsc",
"codegen": "graphql-codegen",
"codegen:watch": "graphql-codegen --watch",
"heroku-postbuild": "yarn build && npx sequelize-cli db:migrate && cd frontend && yarn install --frozen-lockfile && yarn build",
"test": "jest --detectOpenHandles --runInBand",
"test-ci": "DB_ENV=ci jest --detectOpenHandles --runInBand",
"prepare": "husky install",
"migrate-db": "npx sequelize-cli db:migrate",
"prod:build": "yarn build && cd frontend && yarn install --frozen-lockfile && yarn build"
},
"engines": {
"node": "^16",
"yarn": ">= 1.22.5"
},
"author": "Distribute Aid | https://distributeaid.org/",
"license": "AGPL-3.0-only",
"dependencies": {
"@graphql-tools/utils": "8.8.0",
"@sinclair/typebox": "0.24.20",
"ajv": "8.11.0",
"ajv-formats": "2.1.1",
"apollo-server": "3.8.2",
"apollo-server-express": "3.8.2",
"bcrypt": "5.0.1",
"body-parser": "1.20.0",
"chalk": "4.1.2",
"compression": "1.7.4",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"express": "4.18.1",
"graphql": "16.5.0",
"graphql-depth-limit": "1.1.0",
"graphql-import-node": "0.0.5",
"graphql-scalars": "1.17.0",
"lodash": "4.17.21",
"nodemailer": "6.7.7",
"nodemon": "2.0.19",
"passport": "0.6.0",
"passport-cookie": "1.0.9",
"pg": "8.7.3",
"reflect-metadata": "0.1.13",
"sequelize": "6.21.3",
"sequelize-typescript": "2.1.3",
"uuid": "8.3.2"
},
"devDependencies": {
"@distributeaid/shared-config": "distributeaid/shared-config",
"@graphql-codegen/add": "3.2.0",
"@graphql-codegen/cli": "2.8.1",
"@graphql-codegen/typescript": "2.7.1",
"@graphql-codegen/typescript-operations": "2.5.1",
"@graphql-codegen/typescript-react-apollo": "3.3.1",
"@graphql-codegen/typescript-resolvers": "2.7.1",
"@types/bcrypt": "5.0.0",
"@types/body-parser": "1.19.2",
"@types/compression": "1.7.2",
"@types/cookie-parser": "1.4.3",
"@types/express": "4.17.13",
"@types/graphql-depth-limit": "1.1.3",
"@types/jest": "27.5.2",
"@types/lodash": "4.14.182",
"@types/node": "17.0.31",
"@types/nodemailer": "6.4.4",
"@types/passport": "1.0.9",
"@types/supertest": "2.0.12",
"@types/uuid": "8.3.4",
"@types/validator": "13.7.4",
"@types/ws": "8.5.3",
"clever-tools": "2.9.1",
"commander": "9.4.0",
"graphql-tag": "2.12.6",
"husky": "8.0.1",
"jest": "28.1.3",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"prettier-plugin-organize-imports": "3.0.0",
"pretty-quick": "3.1.3",
"sequelize-cli": "6.4.1",
"supertest": "6.2.4",
"ts-jest": "28.0.7",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"typescript": "4.7.4"
}
}