-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.6 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.6 KB
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
107
108
109
110
111
112
{
"name": "fuyuko-be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"copy-assets": "cp src/config/config.json dist/be/src/config/ && cp -fr src/updater/assets dist/be/src/updater/",
"tsc": "npx tsc && npm run copy-assets",
"start-mem": "node -r module-alias/register -r source-map-support/register --max-old-space-size=8192 -- dist/be/src/app.js",
"start": "node -r source-map-support/register -- dist/be/src/app.js",
"preexec": "rm -fr ./dist",
"exec": "npm run tsc",
"postexec": "export DEBUG='fuyuko'; npm run start-mem",
"runUpdater": "node -- src/runUpdater.js",
"test": "npx jasmine --reporter=jasmine-ts-console-reporter",
"prebuild": "rm -fr ./dist",
"build": "npm run tsc",
"postbuild": "./update-files-with-git-hash.sh",
"generate": "npx del-cli --force ./dist/be/src/schema.gql && npm run tsc && node -r module-alias/register -r source-map-support/register -- dist/be/src/generate-gql-schema.js"
},
"_moduleAliases": {
"@fuyuko-common": "./dist/common-code/src",
"@fuyuko-workflow": "./dist/wf/src"
},
"private": false,
"author": "tmjeee",
"license": "LGPLv3",
"dependencies": {
"body-parser": "^1.19.0",
"class-validator": "^0.13.1",
"cls-hooked": "^4.2.2",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"cowsay": "^1.4.0",
"csv-parse": "^4.8.2",
"debug": "^4.3.1",
"del-cli": "^4.0.1",
"detect-csv": "^1.1.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-formidable": "^1.2.0",
"express-graphql": "^0.12.0",
"express-validator": "^6.2.0",
"file-type": "^14.6.2",
"formidable": "^1.2.1",
"graphql": "^15.5.1",
"graphql-upload": "^12.0.0",
"json-stringify-safe": "^5.0.1",
"json2csv": "^4.5.4",
"jsonwebtoken": "^8.5.1",
"jszip": "^3.7.0",
"lodash": "^4.17.21",
"mariadb": "^2.1.1",
"module-alias": "^2.2.2",
"moment": "^2.24.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-fetch": "^2.6.1",
"nodemailer": "^6.3.1",
"numeral": "^2.0.6",
"reflect-metadata": "^0.1.13",
"replace-in-file": "^6.2.0",
"rxjs": "^6.5.5",
"self-reload-json": "^0.4.0",
"semver": "^6.3.0",
"sha256": "^0.2.0",
"showdown": "^1.9.1",
"source-map-support": "^0.5.19",
"sprintf": "^0.1.5",
"supports-color": "^9.0.0",
"type-graphql": "^1.1.1",
"typedi": "^0.10.0",
"typescript": "~4.2.4",
"uuid": "^8.3.2",
"xoauth2": "^1.2.0"
},
"devDependencies": {
"@types/cls-hooked": "^4.3.3",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/csv-parse": "^1.2.2",
"@types/express": "^4.17.1",
"@types/express-formidable": "^1.0.4",
"@types/express-validator": "^3.0.0",
"@types/formidable": "^1.0.31",
"@types/graphql-upload": "^8.0.7",
"@types/jasmine": "^3.5.0",
"@types/json-stringify-safe": "^5.0.0",
"@types/json2csv": "^4.5.0",
"@types/jsonwebtoken": "^8.3.5",
"@types/lodash": "^4.14.175",
"@types/module-alias": "^2.0.1",
"@types/moment": "^2.13.0",
"@types/morgan": "^1.9.2",
"@types/node": "^12.7.2",
"@types/node-fetch": "^2.5.5",
"@types/nodemailer": "^6.2.2",
"@types/numeral": "^2.0.1",
"@types/semver": "^6.0.2",
"@types/sha256": "^0.2.0",
"@types/showdown": "^1.9.3",
"@types/source-map-support": "^0.5.3",
"@types/sprintf": "^0.1.0",
"@types/uuid": "^8.3.0",
"copyfiles": "^2.4.1",
"cp-cli": "^2.0.0",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^5.0.2",
"jasmine-ts-console-reporter": "^3.1.1",
"wait-on": "^4.0.1"
}
}