forked from zaratanDotWorld/choreWheel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.52 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
{
"name": "power-ranker",
"version": "0.1.0",
"description": "Distributed resource allocation made easy",
"repository": "[email protected]:zaratanDotWorld/powerRanker.git",
"author": "Daniel Kronovet <[email protected]>",
"license": "AGPL-3.0-or-later",
"engines": {
"node": "^20.11.0",
"npm": "^10.8.1"
},
"scripts": {
"app": "node src/bolt/app.js",
"ngrok": "ngrok http --region=us --hostname=zaratan.ngrok.io 3000",
"prepare": "husky install",
"pretest": "npx knex migrate:rollback --all --env test; npx knex migrate:latest --env test",
"test": "NODE_ENV=test mocha --exit",
"pretest:coverage": "npx knex migrate:rollback --env test; npx knex migrate:latest --env test",
"test:coverage": "NODE_ENV=test nyc --check-coverage mocha --exit",
"lint": "npx eslint ."
},
"dependencies": {
"@slack/bolt": "^3.17.0",
"@slack/web-api": "^7.7.0",
"dotenv": "^16.0.2",
"findup-sync": "^5.0.0",
"js-sha256": "^0.9.0",
"knex": "^2.4.0",
"linear-algebra": "^3.1.4",
"newrelic": "^11.5.0",
"pg": "^8.8.0",
"voca": "^1.4.0"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-almost": "^1.0.1",
"chai-as-promised": "^7.1.1",
"eslint": "^8.23.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"randomstring": "^1.3.0"
}
}