forked from thedevs-network/kutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.39 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "kutt",
"version": "1.0.0",
"description": "Modern URL shortener.",
"main": "./server/server.js",
"scripts": {
"dev": "node ./server/server.js",
"build": "next build ./client",
"start": "NODE_ENV=production node ./server/server.js",
"lint": "./node_modules/.bin/eslint . --fix",
"lint:nofix": "./node_modules/.bin/eslint ."
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:nofix"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheDevs-Network/kutt.git"
},
"keywords": [
"url-shortener"
],
"author": "Pouria Ezzati <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheDevs-Network/kutt/issues"
},
"homepage": "https://github.com/TheDevs-Network/kutt#readme",
"dependencies": {
"axios": "^0.17.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"date-fns": "^1.29.0",
"email-validator": "^1.1.1",
"express": "^4.16.2",
"express-validator": "^4.3.0",
"geoip-lite": "^1.2.1",
"helmet": "^3.9.0",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.1.0",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.4",
"morgan": "^1.9.0",
"nanoid": "^1.0.1",
"neo4j-driver": "^1.5.2",
"next": "^5.1.0",
"next-redux-wrapper": "^1.3.5",
"nodemailer": "^4.4.1",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1",
"passport-local": "^1.0.0",
"passport-localapikey-update": "^0.6.0",
"prop-types": "^15.6.0",
"qrcode.react": "^0.8.0",
"raven": "^2.4.0",
"react": "^16.3.2",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.3.2",
"react-ga": "^2.4.1",
"react-inlinesvg": "^0.7.5",
"react-redux": "^5.0.6",
"recharts": "^1.0.0-beta.10",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.2.0",
"styled-components": "^3.2.6",
"url-regex": "^4.1.1",
"useragent": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-styled-components": "^1.3.0",
"eslint": "^4.12.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.15.0-rc.6",
"prettier": "^1.10.2"
}
}