-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
65 lines (65 loc) · 1.78 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
{
"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",
"bump": "npm run build && npm start",
"watch": "scripty",
"watch:debug": "scripty",
"heroku-postinstall": "npm run build",
"test": "scripty",
"build": "scripty",
"pg:setup": "scripty",
"db:migrate": "./node_modules/.bin/db-migrate"
},
"dependencies": {
"accounting": "^0.4.1",
"body-parser": "^1.18.2",
"chalk": "^2.3.0",
"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.19.3",
"pg": "^7.4.1",
"scripty": "^1.7.2",
"sqlite": "^2.9.1",
"sqlite3": "^3.1.13",
"winston": "^2.3.7"
},
"devDependencies": {
"@types/accounting": "^0.4.1",
"@types/body-parser": "^1.16.8",
"@types/chai": "^4.0.5",
"@types/express": "^4.0.39",
"@types/express-handlebars": "0.0.30",
"@types/fs-extra": "^5.0.0",
"@types/handlebars": "^4.0.36",
"@types/lodash": "~4.14.0",
"@types/mocha": "^2.2.44",
"@types/node": "^9.3.0",
"@types/pg": "^7.4.1",
"@types/sqlite3": "^3.1.1",
"@types/winston": "^2.3.7",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"mocha-typescript": "^1.1.12",
"nodemon": "^1.12.1",
"source-map-support": "^0.5.0",
"ts-node": "^4.1.0",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
}
}