-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.1 KB
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
{
"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",
"test": "mocha --bail --reporter nyan test/ServerSpec.js; pkill -n node;",
"lint": "eslint ./"
},
"dependencies": {
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"dependencies": "0.0.1",
"ejs": "^2.7.4",
"express": "^4.17.1",
"express-partials": "^0.3.0",
"lodash": "^4.17.21",
"mysql": "^2.18.1",
"node-mocks-http": "^1.10.1",
"nodemon": "^2.0.7",
"request": "^2.88.2"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"jsdoc": "^3.5.3",
"mocha": "^2.5.3"
}
}