-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.49 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
{
"name": "logwatcher-demo",
"description": "logwatcher-demo",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/joshbwlng/logwatcher-demo.git"
},
"engines": {
"node": ">=16.14.0"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/"
],
"directories": {
"lib": "lib"
},
"deplint": {
"files": [
"lib/**/*.{ts}"
],
"modules": [
"lib"
]
},
"lint-staged": {
"*.ts": [
"balena-lint --fix"
]
},
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && tsc -p tsconfig.build.json",
"lint": "balena-lint lib && deplint",
"lint:fix": "balena-lint --fix lib",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest",
"prepack": "npm run build",
"start": "node build/index.js",
"dev": "NODE_ENV=development nodemon ./lib/index.ts"
},
"author": "Josh Bowling <[email protected]>",
"license": "AGPL-3.0",
"dependencies": {
"@sentry/node": "^6.19.7",
"@seydx/journalctl": "^1.0.0",
"express": "^4.18.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@balena/lint": "^6.2.0",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.182",
"deplint": "^1.1.3",
"lint-staged": "^12.4.1",
"nodemon": "^2.0.16",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.7.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}