-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "todo-hbs-less",
"version": "1.0.0",
"description": "A to-do application written with Nodejs, Handlebars, MySQL, LESS, and more.",
"engines": {
"node": "7.8.0",
"npm": "4.2.0"
},
"scripts": {
"start": "node server.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slsriehl/todo-hbs-less.git"
},
"author": "Sarah Schieffer Riehl",
"license": "ISC",
"bugs": {
"url": "https://github.com/slsriehl/todo-hbs-less/issues"
},
"homepage": "https://github.com/slsriehl/todo-hbs-less#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.1",
"connect-sequelize": "^2.0.2",
"cookie-parser": "^1.4.3",
"express": "^4.15.2",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.1",
"morgan": "^1.8.1",
"mysql": "^2.13.0",
"sequelize": "^3.30.2",
"util": "^0.10.3"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-dom": "^1.4.3",
"chai-http": "^3.0.0",
"eslint": "^3.13.1",
"graceful-fs": "^4.1.11",
"gulp": "^3.9.1",
"gulp-clean-css": "^3.0.3",
"gulp-coffee": "^2.3.4",
"gulp-concat": "^2.6.1",
"gulp-header": "^1.8.8",
"gulp-less": "^3.3.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.1.0",
"mocha": "^3.2.0",
"mocha-generators": "^2.0.0",
"nightmare": "^2.10.0"
}
}