-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.29 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
{
"name": "template-analysis",
"version": "1.0.0",
"author": "Tago LLC",
"license": "Copyright",
"private": true,
"scripts": {
"test": "jest .",
"test:watch": "jest . --watch",
"test:coverage": "jest . --coverage",
"linter": "eslint .",
"build": "analysis-builder src/handler.ts ./build/handler.tago.js && analysis-builder src/deviceAlerts.ts ./build/deviceAlerts.tago.js && analysis-builder src/deviceCheckinAlert.ts ./build/deviceCheckinAlert.tago.js",
"start": "ts-node-dev --inspect --",
"inspect": "node --inspect ./node_modules/.bin/ts-node --files ./src/start.ts"
},
"jest": {
"preset": "ts-jest"
},
"devDependencies": {
"@types/jest": "27.0.2",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"commitlint": "13.1.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.2",
"jest": "27.2.2",
"prettier": "2.4.1",
"ts-jest": "27.0.5",
"ts-node": "10.2.1",
"typescript": "4.4"
},
"dependencies": {
"@tago-io/builder": "3.0.1",
"@tago-io/sdk": "10.3.11",
"moment-timezone": "0.5.33",
"ts-node-dev": "1.1.8"
}
}