-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 904 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
33
34
35
36
37
{
"name": "sequelize-modeler",
"version": "0.1.0",
"description": "A model generating tool for Sequelize",
"main": "index",
"private": false,
"bin": {
"sequelize-modeler": "bin/sequelize-modeler"
},
"contributors": [
"Kenta Fried <kenta.fried@gmail.com>"
],
"scripts": {
"build": "tsc",
"modeler": "bin/sequelize-modeler",
"dev": "ts-node --project tsconfig.ts-node.json ./src/index.ts",
"lint-templates": "ejslint ./templates/*"
},
"dependencies": {
"change-case": "^4.1.1",
"ejs": "^3.1.5",
"handlebars": "^4.7.6",
"mysql2": "^2.2.5",
"sequelize": "^6.3.5",
"yargs": "^16.1.0"
},
"devDependencies": {
"@types/ejs": "^3.0.4",
"@types/lodash": "^4.14.162",
"ejs-lint": "^1.1.0",
"nodemon": "^1.18.10",
"ts-node": "^8.5.2",
"tsc": "^1.20150623.0",
"tslint": "^6.1.3",
"typescript": "^3.7.2"
}
}