-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.42 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
{
"name": "shortly-express",
"version": "1.1.0",
"description": "Learn about authentication by building a link shortener",
"author": "Hack Reactor <curriculum.team@hackreactor.com>",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"postinstall": "curl -s https://raw.githubusercontent.com/reactorcore/pomander/master/bin/install | bash && ./node_modules/.bin/jsdoc ./server -r -d docs",
"start": "nodemon --ignore node_modules server",
"start:es6": "nodemon --exec babel-node --ignore node_modules server/index.js",
"test": "mocha --bail --reporter nyan test/ServerSpec.js; pkill -n node;",
"test:es6": "babel-node server/index.js & mocha --compilers js:babel-register --bail --reporter nyan test/ServerSpec.js; pkill -n node;",
"lint": "eslint ./"
},
"dependencies": {
"bluebird": "^3.3.4",
"body-parser": "^1.15.0",
"ejs": "^2.4.1",
"express": "^4.13.4",
"express-partials": "^0.3.0",
"lodash": "^4.17.4",
"mysql": "^2.12.0",
"node-mocks-http": "^1.6.1",
"request": "^2.34.0"
},
"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",
"jsdoc": "^3.5.3",
"mocha": "^2.4.5"
},
"babel": {
"presets": [
"es2015"
]
}
}