-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.37 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
46
47
48
49
50
51
{
"name": "twake-mobile-proxy",
"version": "1.0.0",
"description": "API Proxy server for Take mobile app",
"main": "server.js",
"dependencies": {
"@sentry/node": "^6.3.5",
"@sentry/tracing": "^5.30.0",
"@types/busboy": "^0.2.3",
"@types/uuid": "^8.3.0",
"axios": "^0.21.1",
"fastify": "^3.8.0",
"fastify-jwt": "^2.1.3",
"fastify-multipart": "^4.0.3",
"fastify-plugin": "^3.0.0",
"fastify-swagger": "^3.5.0",
"form-data": "^4.0.0",
"node-fetch": "^2.6.1",
"prompt-promise": "^1.0.3",
"socket.io": "^2.3.0",
"tsc": "^1.20150623.0",
"typescript": "^4.0.5",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/node": "^14.14.7",
"fastify-cors": "^5.2.0",
"mocha": "^8.3.0",
"mocha-steps": "^1.3.0",
"nodemon": "^2.0.6",
"prompt": "^1.1.0",
"ts-node": "^9.0.0",
"crypto-js": "^4.0.0"
},
"scripts": {
"build": "tsc && cp -r src/resources build/resources",
"dev": "nodemon",
"start": "npm run build && node build/index.js",
"test": "mocha --require mocha-steps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romanesko/TwakeMobileProxy.git"
},
"author": "",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/romanesko/TwakeMobileProxy/issues"
},
"homepage": "https://github.com/romanesko/TwakeMobileProxy#readme"
}