-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "url-shortner",
"version": "1.0.0",
"description": "Simple URL shortner",
"main": "app.js",
"scripts": {
"lint": "eslint api/*/*.js && eslint app.js",
"start": "nodemon app.js",
"heroku-postbuild": "cd client && npm install --only-dev && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ely-alamillo/url-shortner.git"
},
"author": "Ely Alamillo",
"license": "ISC",
"bugs": {
"url": "https://github.com/ely-alamillo/url-shortner/issues"
},
"homepage": "https://github.com/ely-alamillo/url-shortner#readme",
"dependencies": {
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"eslint": "^4.11.0",
"eslint-config": "^0.3.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.5.1",
"express": "^4.16.2",
"mocha": "^4.0.1",
"mongoose": "^4.13.3",
"nodemon": "^1.12.1",
"sinon": "^4.1.2"
},
"engines": {
"node": "8.0.0"
}
}