-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "rpi-water-meter",
"private": true,
"maintainers": [
"Kevin van der Burgt <[email protected]>"
],
"engines": {
"node": ">=18.9.0",
"pnpm": ">=7.11.0"
},
"scripts": {
"prepare": "is-ci || husky install",
"precommit": "lint-staged",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"dev": "ts-node-dev --respawn --transpile-only --rs ./src/main.ts",
"dev:debug": "ts-node-dev --respawn --transpile-only --inspect=0.0.0.0 --rs ./src/main.ts",
"build": "rimraf dist && tsc",
"start": "node ./dist/main.js"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/types": "^17.0.0",
"@types/node": "^18.7.16",
"@types/rpio": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"commitizen": "^4.2.5",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.3"
},
"dependencies": {
"@nestjs/common": "^9.0.11",
"@nestjs/core": "^9.0.11",
"@nestjs/platform-express": "^9.0.11",
"reflect-metadata": "^0.1.13",
"rpio": "^2.4.2",
"rxjs": "^7.5.6"
}
}