-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 940 Bytes
/
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
{
"name": "shortly-express",
"version": "1.1.0",
"description": "Learn about authentication by building a link shortener",
"author": "Hack Reactor <[email protected]>",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": "5.11.1"
},
"scripts": {
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.3.4",
"body-parser": "^1.15.0",
"bookshelf": "^0.9.1",
"ejs": "^2.4.1",
"express": "^4.13.4",
"express-partials": "^0.3.0",
"express-session": "^1.14.1",
"knex": "^0.10.0",
"request": "^2.34.0",
"sqlite3": "~3.1.1"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"mocha": "^2.4.5"
},
"babel": {
"presets": [
"es2015"
]
}
}