-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
58 lines (58 loc) · 1.78 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "url-shortener",
"version": "1.0.0",
"description": "A url shortener built using Node JS",
"repository": {
"type": "git",
"url": "git+https://github.com/hngi/node-url-shortener.git"
},
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node dist",
"build": "rm -rf dist/ && babel src/ -d dist/ --copy-files",
"start-dev": "cross-env NODE_ENV=development ./node_modules/.bin/nodemon --exec babel-node ./src/index.js",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text mocha --timeout 20000 -r @babel/register ./src/tests/ --exit",
"heroku-postbuild": "cross-env NODE_ENV=production npm run build"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hngi/node-url-shortener/issues"
},
"homepage": "https://github.com/hngi/node-url-shortener#readme",
"devDependencies": {
"@babel/cli": "^7.6.3",
"@babel/core": "^7.6.3",
"@babel/node": "^7.6.3",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"express": "^4.17.1",
"mocha": "^6.2.1",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.3",
"nyc": "^14.1.1"
},
"dependencies": {
"@babel/runtime": "^7.6.3",
"@hapi/joi": "^16.1.7",
"cookie-parser": "^1.4.4",
"cross-env": "^6.0.3",
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"ejs": "^2.7.1",
"express": "^4.17.1",
"express-device": "^0.4.2",
"express-session": "1.16.2",
"express-validator": "^6.4.0",
"geoip-lite": "^1.3.8",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"nanoid": "^2.1.2",
"saslprep": "^1.0.3"
}
}