-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "grafana-hue-notifier",
"license": "MIT",
"version": "0.1.0",
"scripts": {
"dev": "rimraf ./dist && concurrently npm:watch:ts npm:start:watch",
"watch:ts": "tsc -w",
"build": "rimraf ./dist && tsc",
"start": "NODE_ENV=production node ./dist/index.js | pino-pretty -i hostname,pid -t HH:mm:ss",
"start:watch": "wait-on dist && NODE_ENV=development nodemon --watch dist -e js dist/index.js | pino-pretty -i hostname,pid -t HH:mm:ss",
"setup": "node ./dist/setup.js"
},
"engines": {
"node": "16"
},
"dependencies": {
"env-schema": "^3.0.1",
"fastify": "^3.15.1",
"fastify-env": "^2.1.0",
"fastify-plugin": "^3.0.0",
"fastify-sensible": "^3.1.1",
"hyperid": "^2.1.0",
"node-hue-api": "5.0.0-beta.2",
"pino": "^6.11.3",
"pino-pretty": "^4.8.0"
},
"devDependencies": {
"@elfo404/eslint-config": "^0.0.1-alpha.7",
"@types/node": "^15.0.2",
"@types/pino": "^6.3.8",
"concurrently": "^6.1.0",
"eslint": "^7.26.0",
"import-sort-style-module": "^6.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"prettier-plugin-import-sort": "^0.0.6",
"rimraf": "^3.0.2",
"typescript": "^4.2.4",
"wait-on": "^5.3.0"
},
"importSort": {
".ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}