-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1002 Bytes
/
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
{
"name": "sleep-tracker",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"license": "Apache-2.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check": "gts check",
"clean": "gts clean",
"fix": "gts fix",
"copy-static": "cp -r src/views build && cp -r src/static build",
"precompile": "yarn clean",
"postcompile": "yarn copy-static",
"compile": "tsc",
"start": "node build/index.js",
"dev": "nodemon src/index.ts"
},
"devDependencies": {
"@types/dotenv-safe": "^8.1.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.24",
"gts": "^3.1.0",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"dotenv-safe": "^8.2.0",
"express": "^4.17.3",
"geo-tz": "^7.0.1",
"googleapis": "^100.0.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"pug": "^3.0.2",
"pushbullet": "^2.4.0"
}
}