-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.84 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
{
"name": "flatex-rest-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-ts": "tsc",
"build": "npm run build-ts && npm run lint",
"debug": "npm run build && npm run watch-debug",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"serve-debug": "nodemon --inspect dist/app.js",
"serve": "node dist/app.js",
"start": "npm run serve",
"test": "jest --forceExit --coverage --verbose",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"watch-node": "nodemon dist/app.js",
"watch-test": "npm run test -- --watchAll",
"watch-ts": "tsc -w",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\""
},
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"color": "^4.2.3",
"dotenv": "^16.0.1",
"io-ts": "^2.2.16",
"io-ts-promise": "^2.0.2",
"io-ts-reporters": "^2.0.1",
"io-ts-types": "^0.5.16",
"lodash": "^4.17.21",
"luxon": "^2.4.0",
"matrix-bot-sdk": "^0.5.19",
"mustache": "^4.2.0",
"node-cache": "^5.1.2",
"node-localstorage": "^2.2.1",
"rxjs": "^7.5.5",
"shell-quote": "^1.7.3",
"websocket": "^1.0.34",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/color": "^3.0.3",
"@types/lodash": "^4.14.182",
"@types/luxon": "^2.3.2",
"@types/mustache": "^4.1.3",
"@types/node-localstorage": "^1.3.0",
"@types/shell-quote": "^1.7.1",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"concurrently": "^7.2.2",
"eslint": "7.19.0",
"nodemon": "^2.0.18",
"typescript": "^4.7.4"
}
}