-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.27 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": "ispindel-multiservice",
"version": "1.0.4",
"description": "Send iSpindel data to multiple services",
"main": "build/index.js",
"scripts": {
"build": "yarn tsc -p tsconfig.json",
"prebuild": "rimraf build",
"start": "yarn build && node build/src/index.js",
"dev": "nodemon",
"test": "tap --ts --reporter=list --watch",
"release": "dotenv release-it --"
},
"keywords": [
"ispindel",
"homebrewing"
],
"author": "Chris Scott",
"license": "MIT",
"dependencies": {
"axios": "^1.5.0",
"dotenv": "^16.3.1",
"envsub": "4.1.0",
"fastify": "^4.23.2"
},
"devDependencies": {
"@types/node": "18.16.0",
"@types/tap": "^15.0.9",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"nodemon": "^3.0.1",
"release-it": "^16.1.5",
"rimraf": "^5.0.1",
"tap": "16.3.4",
"ts-node": "10.9.1",
"typescript": "^5.2.2"
},
"nodemonConfig": {
"watch": [
"."
],
"exec": "npm run-script build && npm start",
"ext": "ts"
},
"packageManager": "[email protected]"
}