-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
36 lines (36 loc) · 1.07 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
{
"name": "whereisfelix.today-backend",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"prettier": "prettier index.ts --write",
"dev": "source .keys && prettier index.ts --write && tsc index.ts && node --inspect index.js",
"start": "NODE_ENV=production node index.js",
"deploy": "prettier index.ts --write && tsc index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KrauseFx/whereisfelix.today.git"
},
"author": "KrauseFx",
"license": "MIT",
"bugs": {
"url": "https://github.com/KrauseFx/whereisfelix.today/issues"
},
"homepage": "https://whereisfelix.today",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"ical": "^0.8.0",
"mfp": "git+https://git@github.com/KrauseFx/mfp.git",
"moment": "^2.29.1",
"needle": "^3.0.0",
"prettier": "^2.4.1",
"tsd": "^0.18.0",
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/node": "^16.11.6"
}
}