-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "bartime",
"version": "0.1.0",
"author": "pnlng @pnlng",
"bugs": "https://github.com/pnlng/bartime/issues",
"dependencies": {
"@hapi/boom": "9.1.3",
"conf": "10.0.1",
"express": "4.17.1",
"moment": "2.29.1",
"node-notifier": "10.0.0",
"nodemon": "2.0.9",
"open": "7.0.0",
"pretty-ms": "7.0.1"
},
"devDependencies": {
"@types/express": "4.17.12",
"@types/hapi__boom": "9.0.1",
"@types/node": "16",
"@types/node-notifier": "8.0.0",
"@typescript-eslint/eslint-plugin": "4.28.1",
"@typescript-eslint/parser": "4.28.1",
"eslint": "7.30.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"prettier": "2.3.2",
"typescript": "4.3"
},
"engines": {
"node": ">=8.0.0"
},
"homepage": "https://github.com/pnlng/bartime",
"keywords": [
"timer",
"express",
"touchbar"
],
"license": "MIT",
"main": "dist/server.js",
"repository": "pnlng/bartime",
"scripts": {
"server": "ts-node src/server.ts",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"build-ts": "tsc",
"build": "yarn run build-ts && yarn run lint",
"freeze": "nexe dist/server.js -t macos-x64-v8.4.0 -n bartime",
"dist": "yarn run build && yarn run freeze"
}
}