-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.46 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "comparedbstructure",
"version": "0.1.1",
"description": "A program to compare the structure of two databases and list the differences.",
"main": "app.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"dev-all": "nodemon -e js,twig,scss --exec \"./convertSass.sh && node app.js\"",
"dev": "nodemon app.js",
"devtools": "nodemon --inspect -e js,json,html app.js",
"test": "mocha",
"tsc": "tsc --pretty --lib 'dom','es2015','es2017' --types 'node' models/*.ts routes/*.ts interfaces/*.ts ./*.ts",
"compile": "npm run tsc && node app.js",
"dev-ts": "./node_modules/nodemon/bin/nodemon.js -e ts --exec \"npm run compile\"",
"dev-scss": "./node_modules/nodemon/bin/nodemon.js -w ./ -w ./public/css/style.scss --exec \"./convertSass.sh && node app.js\"",
"commit": "commit-wizard"
},
"repository": {
"type": "git",
"url": "https://github.com/DarinDev1000/comparedbstructure"
},
"keywords": [
"database",
"compare",
"dbcompare",
"structure",
"mysql",
"mariadb"
],
"author": "Darin Crawmer",
"license": "MIT",
"homepage": "https://github.com/DarinDev1000/comparedbstructure",
"dependencies": {
"bunyan": "^1.8.12",
"child-process-promise": "^2.2.0",
"debug": "^2.6.9",
"deep-diff": "^1.0.2",
"dotenv": "^4.0.0",
"htmlparser": "^1.7.7",
"jsdom": "^9.11.0",
"jsonwebtoken": "^8.4.0",
"koa": "^2.6.2",
"koa-body": "^2.5.0",
"koa-bunyan": "^1.0.2",
"koa-compose": "^3.2.1",
"koa-compress": "^2.0.0",
"koa-lusca": "^2.2.0",
"koa-router": "^7.3.0",
"koa-static-server": "^1.3.4",
"koa-views": "^6.1.4",
"koa-views-render": "0.0.1",
"koa2-cors": "^2.0.5",
"markdown-it": "^8.4.0",
"mdbootstrap": "^4.5.15",
"moment": "^2.20.1",
"mysql2": "^1.6.4",
"mz": "^2.7.0",
"node-gyp": "^3.8.0",
"randomstring": "^1.1.5",
"twig": "^1.12.0",
"underscore": "^1.9.1"
},
"devDependencies": {
"apidoc": "^0.17.7",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7",
"npm-check": "^5.5.2",
"pre-git": "^3.17.1",
"supertest": "^3.0.0"
},
"release": {
"analyzeCommits": "simple-commit-message"
},
"config": {
"pre-git": {
"enabled": "false",
"_comment": "commit-msg: simple",
"pre-commit": [],
"pre-push": [],
"post-commit": [],
"post-checkout": [],
"post-merge": []
}
}
}