-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "dynv6-windows-updater",
"version": "1.0.0",
"description": "A windows application updating dyndns ipv6 settings for dynv6.com",
"main": "index.js",
"scripts": {
"build": "rimraf dist && npx tsc",
"prestart": "npm run build",
"start": "node dist/index.js",
"predev": "npm run build",
"dev": "concurrently \"npx tsc -w\" \"nodemon dist/index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/SaschaWebDev/dynv6-windows-updater.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/SaschaWebDev/dynv6-windows-updater/issues"
},
"homepage": "https://github.com/SaschaWebDev/dynv6-windows-updater#readme",
"dependencies": {
"concurrently": "^7.4.0",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"helmet": "^6.0.0",
"ip": "^1.1.8",
"morgan": "^1.10.0",
"node-cron": "^3.0.2",
"node-fetch": "^2.6.7",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/node-cron": "^3.0.4",
"@types/express": "^4.17.14",
"@types/ip": "^1.1.0",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.23",
"@types/node-fetch": "^2.6.2",
"nodemon": "^2.0.20"
}
}