forked from MokkeMeguru/tcs-notification-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.21 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
{
"name": "tcs-notification-ts",
"version": "1.0.0",
"description": "task cabinet server's notification app",
"main": "dst/index.js",
"scripts": {
"lint": "eslint ./src/*.ts",
"dev": "nodemon --exec ts-node src/index.ts",
"start": "ts-node-dev --respawn src/index.ts",
"build": "npx tsc",
"server": "node dst/index.js"
},
"author": "MokkeMeguru",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/node": "^12.12.17",
"@types/node-cron": "^2.0.2",
"@types/pg": "^7.11.2",
"@types/web-push": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"nodemon": "^2.0.1",
"prettier": "^1.19.1",
"ts-node": "^8.5.4",
"ts-node-dev": "^1.0.0-pre.44",
"types": "^0.1.1",
"typescript": "^3.7.3",
"typescript-language-server": "^0.4.0"
},
"dependencies": {
"node-cron": "^2.0.3",
"pg": "^7.14.0",
"web-push": "^3.4.2"
}
}