-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.84 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
{
"name": "linklet-app",
"dependencies": {
"color-generator": "^0.1.0",
"cookie-parser": "^1.4.3",
"date-fns": "^1.28.5",
"express": "^4.15.3",
"ismobilejs": "^0.4.1",
"isomorphic-unfetch": "^2.0.0",
"next": "^5.0.0",
"nprogress": "^0.2.0",
"rc-pagination": "^1.10.1",
"react": "16.0.0",
"react-autosuggest": "^9.3.1",
"react-cookie": "1.0.5",
"react-dom": "16.0.0",
"react-ga": "^2.2.0",
"react-highlight-words": "^0.8.0",
"react-icons": "^2.2.4",
"react-lazyload": "^2.2.7",
"react-modal-dialog": "^4.0.7",
"sw-precache-webpack-plugin": "^0.11.4",
"webpack-bundle-analyzer": "^2.8.3"
},
"scripts": {
"dev": "NODE_ENV=development nodemon server.js -w server.js",
"build": "next build",
"start": "NODE_ENV=production node server",
"deploy": "npm run lint && now",
"alias": "now alias",
"lint":
"prettier 'utils/**/*.js' 'components/**/*.js' 'pages/**/*.js' 'lib/**/*.js' 'hocs/**/*.js' '*.js' --write --single-quote --no-semi && standard --fix",
"precommit": "lint-staged",
"analyze": "cross-env ANALYZE=1 next build"
},
"devDependencies": {
"cross-env": "^5.0.1",
"husky": "^0.14.3",
"lint-staged": "^4.0.2",
"nodemon": "^1.11.0",
"prettier": "^1.5.3",
"standard": "10.0.2"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --no-semi",
"standard --fix",
"git add"
]
},
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/vinaypuppal/linklet-app.git"
},
"keywords": [],
"author": "Vinay Puppal <[email protected]> (https://www.vinaypuppal.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vinaypuppal/linklet-app/issues"
},
"homepage": "https://github.com/vinaypuppal/linklet-app#readme",
"description": ""
}