forked from syon-development/sequelize-typescript-migration
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "sequelize-typescript-migration-v2",
"version": "0.0.2-beta.4",
"description": "migration tool for sequelize & typescript users",
"keywords": [
"sequelize",
"typescript",
"migrate",
"migration",
"makemigration"
],
"homepage": "https://github.com/syon-development/sequelize-typescript-migration",
"bugs": {
"url": "https://github.com/syon-development/sequelize-typescript-migration/issues",
"email": "[email protected]"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepare": "tsc",
"start": "node dist/index.js"
},
"bin": "./dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/syon-development/sequelize-typescript-migration"
},
"author": {
"name": "Thomas Kugi",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"deep-diff": "^1.0.2",
"inflection": "^1.12.0",
"js-beautify": "^1.10.3",
"mysql2": "^2.1.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.6",
"sequelize-typescript": "^1.1.0",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/bluebird": "^3.5.30",
"@types/deep-diff": "^1.0.0",
"@types/inflection": "^1.5.28",
"@types/js-beautify": "^1.8.2",
"@types/node": "^13.11.0",
"@types/validator": "^13.0.0",
"ts-node": "^8.8.2",
"tsconfig-paths": "^3.9.0"
},
"engines": {
"node": ">=10"
}
}