-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.44 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
{
"name": "@swingletree-oss/deck",
"description": "Swingletree webinterface",
"repository": {
"type": "git",
"url": "git@github.com:swingletree-oss/deck.git"
},
"main": "index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"start": "npm run build && node bin/main.js",
"sass": "node-sass views/sass/main.scss -o static/css --output-style compressed",
"sass:watch": "npm run sass -- -w",
"build": "npm run sass && npm run build-ts && npm run tslint",
"test": "ts-mocha --exit",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"watch-debug": "nodemon --inspect bin/main.js",
"release": "semantic-release"
},
"dependencies": {
"@elastic/elasticsearch": "^7.5.1",
"@swingletree-oss/harness": "^1.1.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"d3": "^5.15.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"inversify": "^5.0.1",
"jdenticon": "^2.2.0",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"nconf": "^0.10.0",
"node-cache": "^5.1.0",
"passport": "^0.4.1",
"passport-github2": "^0.1.11",
"pug": "^2.0.4",
"reflect-metadata": "^0.1.13",
"winston": "^3.2.1"
},
"devDependencies": {
"@semantic-release/exec": "^5.0.0",
"@types/basic-auth": "^1.1.3",
"@types/body-parser": "^1.17.1",
"@types/chai": "^4.2.8",
"@types/chai-things": "0.0.34",
"@types/compression": "1.7.0",
"@types/express": "^4.17.2",
"@types/express-jwt": "0.0.42",
"@types/js-yaml": "^3.12.2",
"@types/jsonwebtoken": "^8.3.7",
"@types/mocha": "^7.0.1",
"@types/nconf": "^0.10.0",
"@types/node": "^13.7.0",
"@types/node-cache": "^4.2.5",
"@types/nunjucks": "^3.1.3",
"@types/passport": "^1.0.2",
"@types/redis": "^2.8.14",
"@types/request": "^2.48.4",
"@types/sinon": "^7.5.1",
"bootstrap-scss": "^4.4.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-things": "^0.2.0",
"eslint": "^6.8.0",
"mocha": "^7.0.1",
"mockserver": "^3.1.1",
"node-sass": "^4.13.1",
"nodemon": "^2.0.2",
"semantic-release": "^17.0.2",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0",
"sinon-express-mock": "^2.2.1",
"ts-mocha": "^6.0.0",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
},
"license": "GPL-3.0",
"private": true
}