-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 962 Bytes
/
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
{
"name": "express-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"orm:generate": "./node_modules/.bin/ts-node ./node_modules/typeorm/cli.js migration:generate -n test",
"orm:run":"./node_modules/.bin/ts-node ./node_modules/typeorm/cli.js migration:run",
"orm:revert":"./node_modules/.bin/ts-node ./node_modules/typeorm/cli.js migration:revert"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"mysql": "^2.16.0",
"reflect-metadata": "^0.1.12",
"typeorm": "^0.2.7"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/es6-shim": "^0.31.37",
"@types/express": "^4.16.0",
"@types/express-handlebars": "0.0.30",
"@types/node": "^10.7.0",
"ts-node": "^7.0.1",
"typescript": "^3.0.1"
}
}