-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 4 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "divina",
"description": "",
"version": "1.0.0",
"scripts": {
"dev": "npx nodemon server/ssr-server.js",
"build": "next build",
"build:analyze": "BUNDLE_ANALYZE=browser next build",
"start": "NODE_ENV=production node server/ssr-server.js",
"eslint": "npx eslint --ext .jsx,.js ./",
"eslint:fix": "npx eslint --ext .jsx,.js --fix ./",
"precommit": "lint-staged",
"eject": "react-scripts eject",
"heroku-postbuild": "next build",
"docker:build": "docker login --username=divinadocker --password=4TL97uAztkP6wST; VERSION=$(cat package.json | grep version | head -1 | awk -F= \"{ print $2 }\" | sed 's/[version:,\",]//g'| tr -d '[[:space:]]'); TAG=$(git describe --tags --always); docker build -t aaiello/divina:${VERSION}-${TAG} .; docker build -t aaiello/divina:latest .",
"docker:push": "docker login --username=divinadocker --password=4TL97uAztkP6wST; VERSION=$(cat package.json | grep version | head -1 | awk -F= \"{ print $2 }\" | sed 's/[version:,\",]//g'| tr -d '[[:space:]]'); TAG=$(git describe --tags --always); docker push aaiello/divina:${VERSION}-${TAG}; docker push aaiello/divina:latest"
},
"dependencies": {
"@material-ui/core": "^3.9.0",
"@material-ui/icons": "^3.0.2",
"@material-ui/styles": "^3.0.0-alpha.10",
"@zeit/next-css": "^1.0.1",
"@zeit/next-bundle-analyzer": "^0.1.2",
"apollo-boost": "^0.1.27",
"apollo-client-preset": "^1.0.6",
"apollo-link": "^1.2.8",
"apollo-link-ws": "^1.0.4",
"apollo-server-express": "^2.3.2",
"apollo-utilities": "^1.1.3",
"axios": "latest",
"classnames": "^2.2.6",
"connect-flash": "^0.1.1",
"connect-mongo": "^2.0.3",
"cookie": "^0.3.1",
"cookie-parser": "latest",
"cors": "^2.8.4",
"cross-env": "5.2.0",
"date-fns": "1.30.1",
"express": "^4.16.4",
"express-session": "^1.15.6",
"fontfaceobserver": "^2.1.0",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.4",
"image-file-to-base64-exif": "^1.0.3",
"ip": "^1.1.5",
"isomorphic-unfetch": "^3.0.0",
"javascript-time-ago": "^2.0.1",
"jss": "^9.8.7",
"lodash": "^4.17.11",
"mongoose": "latest",
"next": "^8.0.1",
"next-routes": "^1.4.2",
"passport": "^0.4.0",
"passport-auth0": "^1.0.0",
"prop-types": "^15.6.2",
"puppeteer-google-scraper": "1.0.0",
"react": "^16.7.0",
"react-apollo": "^2.4.0",
"react-color": "^2.17.0",
"react-div-100vh": "^0.3.4",
"react-dom": "^16.8.2",
"react-dropzone": "8.0.3",
"react-ga": "^2.5.7",
"react-icons": "3.4.0",
"react-iframe": "1.4.0",
"react-image": "^2.0.0",
"react-image-crop": "^6.0.13",
"react-jss": "^8.6.1",
"react-number-format": "^4.0.6",
"react-page-visibility": "^3.2.1",
"react-share": "2.4.0",
"react-slick": "^0.24.0",
"slick-carousel": "^1.8.1",
"styled-components": "^4.1.3",
"styled-jsx": "^3.2.0",
"typeface-roboto": "0.0.54",
"typeface-work-sans": "0.0.54"
},
"main": "index.js",
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-plugin-import": "^1.11.0",
"babel-plugin-root-import": "^5.1.0",
"babel-plugin-styled-components": "^1.10.0",
"eslint": "5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-import-resolver-babel-plugin-root-import": "^1.1.1",
"eslint-loader": "2.1.1",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jest": "22.1.2",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-watch": "4.0.2",
"nodemon": "^1.18.10",
"prettier": "^1.17.0",
"url-loader": "^1.1.2"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/aaiello/divina.git"
},
"keywords": [],
"author": "Andrés Aiello",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/aaiello/divina/issues"
},
"homepage": "https://gitlab.com/aaiello/divina#readme"
}