-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.57 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
{
"author": {
"name": "GUIEEN",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/GUIEEN/balanceTest.git"
},
"license": "MIT",
"name": "balancetestapi",
"version": "0.0.1",
"description": "API with TypeScript && TypeORM.",
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.11.1",
"@types/express-promise-router": "^2.0.0",
"@types/joi": "^13.0.8",
"@types/multer": "^1.3.6",
"@types/node": "^10.1.0",
"@types/rimraf": "^2.0.2",
"npx": "^10.2.0",
"rimraf": "^2.6.2",
"routing-controllers": "^0.7.7",
"ts-node": "6.0.3",
"tslint": "^5.10.0",
"tslint-config-standard": "^7.0.0",
"typescript": "2.8.3"
},
"dependencies": {
"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.5"
},
"scripts": {
"start": "NODE_ENV=development nodemon --exec ts-node src/runServer.ts",
"create-migration": "NODE_ENV=mig npx ts-node ./node_modules/.bin/typeorm migration:generate -c mig -n Test",
"run-migration": "NODE_ENV=mig npx ts-node ./node_modules/.bin/typeorm migration:run -c mig",
"revert-migration": "NODE_ENV=mig npx ts-node ./node_modules/.bin/typeorm migration:revert -c mig",
"start-on-mig-env": "NODE_ENV=mig nodemon --exec ts-node src/runServer.ts"
}
}