-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.12 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
{
"name": "hotstaq",
"version": "0.8.102",
"description": "A friendly web framework that fits nicely into devops and CI/CD pipelines.",
"bin": {
"hotstaq": "./bin/hotstaq"
},
"main": "./build/src/api.js",
"types": "./build/src/api.d.js",
"type": "commonjs",
"scripts": {
"version-check": "node ./scripts/VersionCheck.mjs",
"test": "npm run build-test-api && export $(cat .env | xargs) && mocha --timeout 5000 --colors ./build/tests/**/*.js",
"test-nyc": "npm run build-test-api && nyc mocha --require=dotenv/config --timeout 5000 --colors ./build/tests/**/*.js",
"prepublishOnly": "npm run builddoc && npm run build && npm run buildweb && npm run version-check",
"builddoc": "typedoc --theme markdown --tsconfig ./tsconfig.json --entryPoints './src/api.ts' --readme README.md --out ./docs/ ./src",
"build": "tsc --build ./tsconfig.json",
"buildweb": "webpack --mode=production && npm_config_yes=true npx google-closure-compiler@latest --js=./build-web/HotStaq.js --language_out=ECMASCRIPT_2018 --js_output_file=./build-web/HotStaq.min.js",
"buildwebdebug": "webpack --mode=development --stats-modules-space 999 && webpack --mode=development --config=webpack.config.tests.cjs",
"build-test-api": "hotstaq --hotsite ./tests/hotsite/HotSite.json generate"
},
"bugs": {
"url": "https://github.com/OurFreeLight/HotStaq/issues"
},
"author": "FreeLight, Inc",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OurFreeLight/HotStaq.git"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.20.0",
"archiver": "^5.3.1",
"chai": "^4.3.4",
"commander": "^6.2.1",
"dotenv": "^16.0.2",
"express": "^4.17.1",
"express-rate-limit": "^7.3.1",
"form-data": "^4.0.0",
"formidable": "^2.0.1",
"fs-extra": "^9.1.0",
"glob": "^11.0.0",
"ioredis": "^5.4.1",
"js-cookie": "^3.0.1",
"mime-types": "^2.1.35",
"mocha": "^10.2.0",
"mysql2": "^3.9.9",
"node-fetch": "^2.6.7",
"pg": "^8.13.1",
"pg-pool": "^3.7.0",
"rate-limit-redis": "^4.2.0",
"selenium-webdriver": "^4.16.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"typescript": "^4.5.4",
"uuid": "^8.3.2",
"validate-npm-package-name": "^3.0.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/archiver": "^5.3.2",
"@types/chai": "^4.2.21",
"@types/express": "^4.17.13",
"@types/formidable": "^1.2.4",
"@types/fs-extra": "^9.0.12",
"@types/glob": "^8.0.1",
"@types/js-cookie": "^2.2.7",
"@types/mime-types": "^2.1.1",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.5",
"@types/node-fetch": "^2.6.1",
"@types/pg": "^8.11.10",
"@types/pg-pool": "^2.0.6",
"@types/selenium-webdriver": "^4.1.21",
"@types/uuid": "^8.3.4",
"@types/validate-npm-package-name": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"nyc": "^15.1.0",
"ts-loader": "^9.4.2",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.3",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
}
}