-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.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": "tunnelmole-service",
"version": "0.0.1",
"description": "Tunnelmole service",
"main": "srv/index.js",
"scripts": {
"build": "tsc -p ./",
"watch": "tsc -p ./ -w",
"test": "npm run build && jest",
"start": "npm run watch & nodemon dist/srv/index.js",
"start-prod": "node dist/srv/index.js"
},
"author": "",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@types/express": "^4.17.6",
"@types/moment": "^2.13.0",
"@types/nanoid": "^2.1.0",
"@types/stripe": "^7.13.23",
"@types/ws": "^7.2.4",
"body-parser": "^1.19.0",
"capitalize": "^2.0.3",
"express": "^4.17.1",
"in_array": "^1.1.0",
"jest": "^29.6.1",
"moment-timezone": "^0.5.34",
"mysql2": "^3.2.0",
"nanoid": "^3.1.7",
"randomstring": "^1.1.5",
"reverse-dns-lookup": "^2.0.0",
"source-map-support": "^0.5.21",
"stripe": "^8.55.0",
"toml": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^4.9.3",
"ws": "^7.2.5"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"nodemon": "^3.1.7",
"ts-node": "^10.9.1"
}
}