-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
72 lines (72 loc) · 2.15 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
{
"name": "mikeworks-sql",
"version": "0.0.0",
"description": "Mike.Works SQL Fundamentals Course",
"main": "index.js",
"repository": "https://github.com/mike-works/sql-fundamentals.git",
"author": "Mike North <michael.l.north@gmail.com> (https://mike.works)",
"license": "BSD-3-Clause",
"engines": {
"node": ">= 6"
},
"scripts": {
"start": "SCRIPTY_SILENT=true scripty",
"bump": "npm run build && npm start",
"watch": "SCRIPTY_SILENT=true scripty",
"watch:debug": "SCRIPTY_SILENT=true scripty",
"heroku-postinstall": "npm run build",
"test": "SCRIPTY_SILENT=true scripty",
"build": "SCRIPTY_SILENT=true scripty",
"db:setup:pg": "SCRIPTY_SILENT=true scripty",
"db:setup:sqlite": "SCRIPTY_SILENT=true scripty",
"db:migrate:pg": "SCRIPTY_SILENT=true scripty",
"db:migrate:sqlite": "SCRIPTY_SILENT=true scripty",
"db:migrate:create": "SCRIPTY_SILENT=true scripty"
},
"dependencies": {
"accounting": "^0.4.1",
"body-parser": "^1.18.2",
"chalk": "^2.3.0",
"cli-highlight": "^1.2.3",
"db-migrate": "^0.10.2",
"db-migrate-sqlite3": "^0.2.1",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"express-validator": "^4.3.0",
"express-winston": "^2.4.0",
"fs-extra": "^5.0.0",
"lodash": "~4.17.4",
"moment": "^2.20.1",
"scripty": "^1.7.2",
"sqlite": "^2.9.1",
"sqlite3": "^3.1.13",
"winston": "^2.3.7"
},
"optionalDependencies": {
"db-migrate-pg": "^0.3.0",
"pg": "^7.4.1"
},
"devDependencies": {
"@types/accounting": "^0.4.1",
"@types/body-parser": "^1.16.8",
"@types/chai": "^4.1.2",
"@types/express": "^4.11.0",
"@types/express-handlebars": "0.0.30",
"@types/fs-extra": "^5.0.0",
"@types/handlebars": "^4.0.36",
"@types/lodash": "^4.14.98",
"@types/mocha": "^2.2.47",
"@types/node": "^9.4.0",
"@types/pg": "^7.4.1",
"@types/sqlite3": "^3.1.1",
"@types/winston": "^2.3.7",
"chai": "^4.1.2",
"mocha": "^5.0.0",
"mocha-typescript": "^1.1.12",
"nodemon": "^1.14.11",
"source-map-support": "^0.5.3",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^2.6.1"
}
}