-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
83 lines (83 loc) · 2.33 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
{
"name": "genie-server",
"version": "3.0.1",
"license": "Apache-2.0",
"private": true,
"scripts": {
"start": "node dist/main.js",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src ./tests",
"test": "nyc ./tests/everything.sh",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"debug": "nodemon --watch ./src --exec ts-node src/main.ts",
"prepare": "tsc --build tsconfig.json"
},
"resolutions": {},
"dependencies": {
"@js-temporal/polyfill": "^0.4.1",
"body-parser": "^1.19.1",
"color-scheme": "^1.0.0",
"configparser": "^0.3.9",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"csurf": "^1.9.0",
"errorhandler": "^1.5.0",
"express": "^4.17.2",
"express-session": "^1.17.2",
"express-ws": "^5.0.2",
"genie-toolkit": "~0.9.0",
"gm": "^1.23.1",
"morgan": "^1.8.2",
"node-gettext": "^3.0.0",
"passport": "^0.5.2",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"pug": "^3.0.2",
"pulseaudio2": "^0.5.5",
"q": "^1.5.0",
"serve-favicon": "^2.4.3",
"thingpedia": "^2.10.0",
"uuid": "^8.3.1",
"which": "^2.0.2",
"ws": "^7.5.6"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/connect-flash": "0.0.37",
"@types/cookie-parser": "^1.4.2",
"@types/csurf": "^1.11.2",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/express-ws": "^3.0.1",
"@types/gettext-parser": "^4.0.1",
"@types/gm": "^1.18.11",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.18",
"@types/passport": "^1.0.7",
"@types/passport-http-bearer": "^1.0.37",
"@types/passport-local": "^1.0.34",
"@types/passport-strategy": "^0.2.35",
"@types/q": "^1.5.5",
"@types/serve-static": "^1.13.10",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"form-data": "^4.0.0",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"parse5": "^6.0.1",
"selenium-webdriver": "^4.1.0",
"source-map-support": "^0.5.21",
"tough-cookie": "^4.0.0",
"ts-node": "^10.4.0",
"typescript": "~4.3.5"
},
"nyc": {
"exclude": [
"tests/**",
"coverage/**"
]
}
}