-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.42 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
{
"author": {
"email": "[email protected]",
"name": "Jim Redfern"
},
"dependencies": {
"@airbnb/node-memwatch": "^2.0.0",
"async-mutex": "^0.2.4",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"command-line-args": "^5.1.1",
"config": "^3.3.6",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"esm": "^3.2.25",
"express": "^4.17.1",
"jest": "^26.6.3",
"knex": "^0.95.4",
"lodash": "^4.17.20",
"log4js": "^6.3.0",
"pg": "^8.5.1",
"pretty-bytes": "^5.6.0",
"safe-json-stringify": "^1.2.0",
"uuid": "^8.3.2",
"ws": "^7.4.4",
"xstate": "^4.11.0"
},
"devDependencies": {
"@jmredfern/websocket-with-promises": "^1.0.3",
"@types/airbnb__node-memwatch": "^2.0.0",
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.0",
"@types/command-line-args": "^5.0.0",
"@types/config": "0.0.38",
"@types/cors": "^2.8.10",
"@types/csvtojson": "^1.1.5",
"@types/esm": "^3.2.0",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.9",
"@types/knex": "^0.16.1",
"@types/lodash": "^4.14.168",
"@types/log4js": "^2.3.5",
"@types/safe-json-stringify": "^1.1.2",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.2.5",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.8.0",
"coveralls": "^3.1.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-xo": "^0.35.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"prettier": "^2.1.1",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^3.9.7"
},
"engines": {
"node": "14.4.0"
},
"homepage": "",
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run compile"
}
},
"lint-staged": {
"**/*.json": [
"prettier --write"
],
"**/*.{js,ts}": [
"eslint --fix"
]
},
"main": "src/main.ts",
"name": "agilitious",
"private": true,
"scripts": {
"compile": "tsc",
"db:createMigration": "knex migrate:make",
"db:migrate": "knex migrate:latest",
"db:rollback": "knex migrate:rollback",
"dev": "ts-node src/main.ts --port 8000",
"lint": "eslint '**/*.{js,ts}' --fix",
"build": "npm run compile && npm run db:migrate",
"pretty": "prettier '**/*.json' --write",
"start": "node --max_old_space_size=2560 target/src/main.js --port 8000",
"test:component": "jest --verbose --detectOpenHandles ./tests/component",
"test:watch": "jest --verbose --watch ./tests/unit",
"test": "jest --verbose ./tests/unit"
},
"version": "1.0.0"
}