-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.9 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
107
108
109
110
{
"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"
},
"mocha": {
"diff": true,
"extension": [
"ts"
],
"package": "./package.json",
"reporter": "spec",
"slow": 75,
"timeout": 2000,
"ui": "bdd",
"watch-files": [
"src/**/*.ts",
"test/**/*.spec.ts"
],
"watch-ignore": [
"lib/vendor"
],
"recursive": true,
"require": [
"reflect-metadata",
"./test/mocha.env.js"
]
},
"dependencies": {
"@elastic/elasticsearch": "^7.8.0",
"@swingletree-oss/harness": "^2.0.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"d3": "^5.16.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"inversify": "^5.0.1",
"jdenticon": "^2.2.0",
"js-yaml": "^3.14.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.27.0",
"nconf": "^0.11.2",
"node-cache": "^5.1.2",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"pug": "^2.0.4",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@semantic-release/exec": "^5.0.0",
"@types/basic-auth": "^1.1.3",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.18",
"@types/chai-things": "0.0.34",
"@types/compression": "1.7.0",
"@types/express": "^4.17.12",
"@types/express-jwt": "0.0.42",
"@types/js-yaml": "^3.12.6",
"@types/jsonwebtoken": "^8.5.1",
"@types/mocha": "^7.0.2",
"@types/nconf": "^0.10.0",
"@types/node": "^13.13.52",
"@types/node-cache": "^4.2.5",
"@types/nunjucks": "^3.1.4",
"@types/passport": "^1.0.6",
"@types/redis": "^2.8.28",
"@types/request": "^2.48.5",
"@types/sinon": "^7.5.2",
"bootstrap-scss": "^4.6.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-things": "^0.2.0",
"eslint": "^7.27.0",
"mocha": "^8.4.0",
"mockserver": "^3.1.1",
"node-sass": "^4.14.1",
"nodemon": "^2.0.7",
"npm-check-updates": "^7.1.1",
"semantic-release": "^17.4.3",
"sinon": "^8.1.1",
"sinon-chai": "^3.7.0",
"sinon-express-mock": "^2.2.1",
"ts-mocha": "^7.0.0",
"tslint": "^6.1.3",
"typescript": "^3.9.9"
},
"license": "GPL-3.0",
"private": true
}