-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "shortly-deploy",
"version": "1.0.0",
"description": "Learn all about (the challenges of) deployment",
"author": "Hack Reactor <[email protected]>",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"start": "grunt build && grunt upload",
"test": "grunt test",
"lint": "eslint ./"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.3.4",
"body-parser": "^1.15.0",
"bookshelf": "^0.9.1",
"chai": "^3.5.0",
"cookie-parser": "^1.4.1",
"ejs": "^2.4.1",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"express": "^4.13.4",
"express-partials": "^0.2.0",
"express-session": "^1.13.0",
"grunt": "^0.4.4",
"grunt-contrib-concat": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.1",
"grunt-contrib-uglify": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^18.0.0",
"grunt-mocha-test": "^0.12.7",
"grunt-nodemon": "^0.4.1",
"grunt-shell": "^1.2.1",
"knex": "^0.10.0",
"mocha": "^2.4.5",
"mongoose": "^4.4.10",
"request": "^2.34.0",
"sqlite3": "~3.1.1"
},
"devDependencies": {
"supertest": "^1.2.0"
}
}