-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 3.6 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
105
106
{
"name": "conforma-server",
"version": "1.5.6",
"main": "server.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/msupply-foundation/conforma-server"
},
"engines": {
"node": ">=18.18.2 <19.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/typescript": "4.0.9",
"@graphql-codegen/typescript-operations": "^4.2.3",
"@graphql-codegen/typescript-resolvers": "^4.2.1",
"@types/adm-zip": "^0.4.34",
"@types/archiver": "^5.3.1",
"@types/bcrypt": "^3.0.0",
"@types/carbone": "^1.2.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^26.0.10",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.169",
"@types/luxon": "^1.27.0",
"@types/marked": "^2.0.3",
"@types/node": "^14.6.0",
"@types/node-fetch": "^2.5.7",
"@types/node-schedule": "^1.3.2",
"@types/pg": "^7.14.4",
"@types/pluralize": "^0.0.29",
"@types/readline-sync": "^1.4.4",
"@types/rimraf": "^3.0.0",
"@types/semver": "^7.3.9",
"@types/sharp": "^0.27.1",
"@types/ws": "^8.5.10",
"jest": "^26.4.0",
"markdown-toc": "^1.2.0",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.4",
"pg-to-ts": "^4.1.1",
"postgraphile-plugin-nested-mutations": "^1.1.0",
"readline-sync": "^1.4.10",
"rimraf": "^3.0.2",
"ts-jest": "^26.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.5.3"
},
"scripts": {
"dev": "nodemon",
"start": "yarn build && cd build && node server.js",
"build": "./utils/build_all.sh",
"test": "jest --runInBand",
"database_init": "yarn snapshot use",
"build_plugins": "node ./utils/pluginScripts/buildPlugins.js",
"push_docs": "exec ./utils/push_docs_to_wiki.sh",
"gui": "cd ./src/modules/expression-evaluator && yarn gui",
"generate": "graphql-codegen --config codegen.yml",
"generate_pg": "yarn pg-to-ts generate -c postgresql://postgres@localhost:5432/tmf_app_manager -o ./src/generated/postgres.ts",
"postinstall": "node ./utils/pluginScripts/yarnInstallPlugins.js",
"snapshot": "ts-node ./database/snapshotCLI.ts",
"dockerise": "cd docker && ./dockerise.sh",
"docker_run": "cd docker && ./run.sh",
"release": "./utils/release.sh",
"migrate": "ts-node ./database/migration/migrateData.ts --migrate",
"cleanup": "ts-node ./src/components/files/cleanup.ts --cleanup",
"backup": "ts-node ./src/components/exportAndImport/backup.ts --backup",
"archive": "ts-node ./src/components/files/archive.ts --archive",
"update-reviewer-stats": "ts-node ./src/components/database/updateReviewerStats.ts --update-reviewer-stats"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/multipart": "^8.3.0",
"@fastify/static": "^7.0.4",
"@fastify/websocket": "^10.0.1",
"@graphile-contrib/pg-simplify-inflector": "^6.0.0",
"archiver": "^5.3.1",
"archiver-zip-encrypted": "^1.0.11",
"axios": "^1.5.1",
"bcrypt": "^5.1.0",
"carbone": "^3.2.3",
"comment-json": "^4.1.0",
"deep-equal": "^2.0.5",
"delay-sync": "^1.0.2",
"dotenv": "^10.0.0",
"fast-csv": "^4.3.6",
"fastify": "^4.28.1",
"fs-extra": "^11.1.1",
"json-sql-builder2": "^1.0.24",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"luxon": "^1.27.0",
"map-values-deep": "^1.0.2",
"nanoid": "^3.1.21",
"node-schedule": "^2.1.0",
"node-stream-zip": "^1.15.0",
"pg": "^8.11.1",
"pg-diff-cli": "^2.4.0",
"pluralize": "^8.0.0",
"postgraphile": "^4.13.0",
"postgraphile-plugin-connection-filter": "^2.0.0",
"semver": "^7.3.5",
"sharp": "^0.29.3"
}
}