-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
{
"name": "koa-sequelize-template",
"description": "A koa project template using sequelize for models and handlebars for views",
"version": "1.0.0",
"author": {
"name": "Ash Prosser",
"email": "[email protected]",
"url": "https://github.com/ashpr"
},
"keywords": [
"koa",
"sequelize",
"handlebars",
"passport"
],
"main": "server.js",
"dependencies": {
"bcryptjs": "^2.3.0",
"bluebird": "^3.3.4",
"handlebars": "^4.0.5",
"http": "0.0.0",
"kcors": "^1.1.0",
"koa": "^1.2.0",
"koa-bodyparser": "^2.0.1",
"koa-generic-session": "^1.10.1",
"koa-handlebars": "^0.5.7",
"koa-mount": "^1.3.0",
"koa-passport": "^1.3.0",
"koa-redis": "^2.0.1",
"koa-router": "^5.4.0",
"koa-static": "^2.0.0",
"mysql": "^2.10.2",
"passport-local": "^1.0.0",
"redis": "^2.5.2",
"sequelize": "^3.19.3",
"swag": "^0.7.0"
},
"devDependencies": {
"browser-sync": "^2.11.1",
"codeceptjs": "^0.2.8",
"fakeredis": "^1.0.2",
"gulp": "^3.9.1",
"gulp-browserify": "^0.5.1",
"gulp-flatten": "^0.2.0",
"gulp-minify-css": "^1.2.4",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.2.0",
"ip": "^1.1.2",
"node-env-file": "^0.1.8",
"sqlite3": "^3.1.1"
},
"license": "MIT",
"scripts": {
"start": "node server.js",
"gulp-build": "./node_modules/.bin/gulp build",
"mocha": "mocha \"tests/integration/*.js\"",
"docker-selenium": "docker-compose -f docker-compose.selenium.yml up"
},
"readme": "ERROR: No README data found!"
}