-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.94 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
52
53
54
55
56
57
58
59
60
61
{
"author": {
"name": "GUIEEN",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/GUIEEN/balanceTest.git"
},
"scripts": {
"dev": "NODE_ENV=development nodemon --exec ts-node -T src/runServer.ts",
"migration:create": "ts-node -T node_modules/.bin/typeorm migration:create",
"migration:run": "ts-node -T node_modules/.bin/typeorm migration:run",
"migration:revert": "ts-node -T node_modules/.bin/typeorm migration:revert",
"test": "NODE_ENV=test jest --config jest.json",
"build": "npm run clean && tsc",
"start": "NODE_ENV=production ts-node -T src/runServer.ts",
"tsc": "npm run clean && tsc -w",
"clean": "rimraf build",
"lint": "tslint -p ./tsconfig.json -c tslint.json 'src/**/*.ts'"
},
"license": "UNLICENSED",
"name": "balance",
"version": "0.0.1",
"description": "Balance management server",
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.3",
"@types/chai-http": "^3.0.4",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.11.1",
"@types/express-promise-router": "^2.0.0",
"@types/jest": "^22.2.3",
"@types/joi": "^13.0.8",
"@types/multer": "^1.3.6",
"@types/node": "^10.1.2",
"@types/rimraf": "^2.0.2",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"jest": "^22.4.4",
"nodemon": "^1.17.5",
"rimraf": "^2.6.2",
"routing-controllers": "^0.7.7",
"ts-jest": "^22.4.6",
"ts-node": "6.0.3",
"tslint": "^5.10.0",
"tslint-config-standard": "^7.0.0",
"typescript": "2.8.3"
},
"dependencies": {
"big-integer": "^1.6.30",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"express-promise-router": "^3.0.2",
"joi": "^13.3.0",
"multer": "^1.3.0",
"pg": "^7.4.3",
"reflect-metadata": "^0.1.12",
"typeorm": "0.2.6"
}
}