-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.47 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": "analysis-export",
"version": "1.0.0",
"description": "",
"main": "./src/startAnalysis",
"scripts": {
"linter": "eslint .",
"linter-fix": "eslint --fix .",
"debug": "ts-node-dev --inspect",
"test": "jest . --",
"analysis": "ts-node-dev ./src/startAnalysis",
"start": "ts-node-dev ./src/start",
"build": "analysis-builder src/startAnalysis.ts build/analysis.tago.js"
},
"jest": {
"preset": "ts-jest"
},
"author": "",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@tago-io/builder": "3.1.3",
"@types/async": "3.2.16",
"@types/jest": "29.2.3",
"@types/lodash": "4.14.191",
"@types/luxon": "^3.1.0",
"@types/node": "^18.11.9",
"@types/socket.io-client": "3.0.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"jest": "29.3.1",
"prettier": "2.8.0",
"ts-jest": "29.0.3",
"ts-node": "^10.9.1",
"ts-node-dev": "2.0.0",
"typescript": "^4.9.3"
},
"dependencies": {
"@tago-io/sdk": "^10.10.0",
"async": "3.2.4",
"axios": "1.2.0",
"lodash": "4.17.21",
"luxon": "^3.1.1"
}
}