This repository has been archived by the owner on Jan 4, 2019. It is now read-only.
forked from mike-works/sql-fundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.76 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
91
92
{
"name": "@mikeworks/sql-fundamentals",
"version": "0.0.0-development",
"description": "Mike.Works SQL Fundamentals Course",
"main": "index.js",
"repository": "https://github.com/mike-works/sql-fundamentals.git",
"author": "Mike North <[email protected]> (https://mike.works)",
"license": "BSD-3-Clause",
"engines": {
"node": ">= 9.6.22"
},
"scripts": {
"start": "scripty",
"bump": "npm run build && npm start",
"watch": "scripty",
"watch:debug": "scripty",
"heroku-postbuild": "scripty",
"test": "scripty",
"test:ex": "scripty",
"test:ex:watch": "scripty",
"test:watch": "scripty",
"build": "scripty",
"db:setup:pg": "scripty",
"db:setup:mysql": "scripty",
"db:setup:sqlite": "scripty",
"db:migrate:pg": "scripty",
"db:migrate:mysql": "scripty",
"db:migrate:sqlite": "scripty",
"db:migrate:heroku:pg": "DATABASE_URL=$DATABASE_URL?ssl=true npm run db:migrate:pg --- up",
"db:migrate:create": "scripty",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"dependencies": {
"accounting": "^0.4.1",
"body-parser": "^1.18.2",
"chalk": "^2.3.0",
"cli-highlight": "^1.2.3",
"db-migrate": "^0.11.1",
"db-migrate-sqlite3": "github:mike-north/db-migrate-sqlite",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"express-validator": "^5.0.0",
"express-winston": "^2.6.0",
"fs-extra": "^7.0.0",
"lodash": "~4.17.10",
"moment": "^2.22.2",
"scripty": "^1.7.2",
"server-timing": "^1.1.2",
"sql-formatter": "^2.3.1",
"sqlite": "^2.9.2",
"sqlite3": "^4.0.2",
"winston": "^2.3.7",
"ws": "^6.0.0"
},
"optionalDependencies": {
"db-migrate-mysql": "^1.1.10",
"db-migrate-pg": "^0.3.0",
"mysql2": "^1.5.2",
"pg": "^7.4.1"
},
"devDependencies": {
"@mike-works/workshop-semantic-release-config": "^1.0.0",
"@types/accounting": "^0.4.1",
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.4",
"@types/express": "^4.16.0",
"@types/express-handlebars": "0.0.30",
"@types/fs-extra": "^5.0.3",
"@types/handlebars": "^4.0.38",
"@types/lodash": "^4.14.116",
"@types/mocha": "^5.2.5",
"@types/mysql2": "github:types/mysql2",
"@types/node": "^9.6.22",
"@types/pg": "^7.4.10",
"@types/sqlite3": "^3.1.3",
"@types/winston": "^2.3.9",
"@types/ws": "^4.0.2",
"chai": "^4.1.2",
"db-migrate-plugin-typescript": "^2.0.0",
"json-typescript": "^1.0.1",
"mocha": "^5.0.0",
"mocha-typescript": "^1.1.12",
"nodemon": "^1.18.3",
"semantic-release": "^15.9.9",
"source-map-support": "^0.5.3",
"travis-deploy-once": "^5.0.2",
"ts-node": "^5.0.0",
"tslint": "^5.9.1",
"typescript": "^2.6.1"
}
}