-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "rn-binance-signals-api",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-ws": "^3.0.1",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^8.5.5",
"@types/lodash": "^4.14.172",
"@types/node": "^8.0.29",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-ws": "^5.0.2",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"node-binance-api": "^0.13.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"typeorm": "0.2.37"
},
"scripts": {
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"dev": "debug=* NODE_PATH=./src ts-node-dev --respawn ./src/index.ts",
"build": "rimraf dist && tsc",
"start": "NODE_PATH=./dist node ./dist/index.js"
}
}