-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
37 lines (37 loc) · 963 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
{
"name": "mpush",
"version": "2.0.0",
"description": "",
"main": "src/main.js",
"scripts": {
"dev": "ts-node -P ./tsconfig.json ./src/main.ts",
"build": "rm -rf ./dist && tsc --build ./tsconfig.prod.json && cp ./package.json ./dist/package.json",
"start": "node src/main.js",
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kooritea/mpush.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kooritea/mpush/issues"
},
"homepage": "https://github.com/kooritea/mpush#readme",
"devDependencies": {
"@types/node": "^12.6.8",
"@types/ws": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "5.5.4"
},
"dependencies": {
"@types/jsonwebtoken": "^8.3.8",
"@types/web-push": "^3.3.0",
"axios": "^0.19.0",
"google-auth-library": "^9.14.1",
"jsonwebtoken": "^8.5.1",
"web-push": "^3.4.3",
"ws": "^7.1.1"
}
}