-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "marmosad-backend-typescript",
"version": "1.0.0",
"main": "index.ts",
"repository": "https://github.com/Marmosad/marmosad-backend-typescript.git",
"author": "Marmosad Team",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "export NODE_ENV=devel && ts-node ./index.ts",
"start": "npm run build && npm run prod",
"prod": "export NODE_ENV=production && node ./dist/index.js",
"coveralls": "jest --coverage --runInBand --forceExit && cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"@reactivex/rxjs": "^6.3.3",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/socket.io": "^2.1.2",
"body-parser": "^1.18.3",
"cors": "latest",
"coveralls": "^3.0.2",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"inversify": "^5.0.1",
"reflect-metadata": "^0.1.12",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"rxjs": "^6.3.3",
"socket.io": "latest",
"ts-node": "^7.0.1",
"typescript": "^3.2.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/node": "^10.12.18",
"@types/request-promise-native": "^1.0.15",
"@types/socket.io-client": "^1.4.32",
"jest": "^23.6.0",
"socket.io-client": "latest",
"ts-jest": "^23.10.5"
}
}