This repository has been archived by the owner on Jun 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.02 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "takwimu.africa",
"version": "0.2.0",
"private": true,
"proxy": "http://takwimu.africa/",
"homepage": "https://takwimu.africa",
"dependencies": {
"@apollo/react-hooks": "^3.0.1",
"@appbaseio/reactivesearch": "^3.1.1",
"@hurumap-ui/charts": "^0.3.5-alpha.27",
"@hurumap-ui/content": "^0.3.5-alpha.27",
"@hurumap-ui/core": "^0.3.5-alpha.27",
"@material-ui/core": "^4.9.3",
"@material-ui/icons": "^4.9.1",
"@next/bundle-analyzer": "^9.1.4",
"@react-pdf/renderer": "^1.5.6",
"@types/react": "^16.9.2",
"apollo-boost": "^0.4.4",
"apollo-client": "^2.6.4",
"apollo-utilities": "^1.3.2",
"aws-sdk": "^2.610.0",
"axios": "^0.19.0",
"classnames": "^2.2.6",
"cross-env": "^6.0.3",
"cross-fetch": "^3.0.4",
"dom-to-image": "^2.6.0",
"express": "^4.17.1",
"graphql": "^14.5.3",
"graphql-tag": "^2.10.1",
"html2canvas": "^1.0.0-rc.1",
"isomorphic-unfetch": "^3.0.0",
"jss": "^10.0.0",
"leaflet": "^1.6.0",
"lodash": "^4.17.19",
"material-ui-popup-state": "^1.5.3",
"next": "^9.5.4",
"next-images": "^1.2.0",
"prop-types": "^15.6.2",
"react": "^16.10.2",
"react-app-polyfill": "^1.0.1",
"react-dom": "^16.10.2",
"react-helmet": "^5.2.1",
"react-lazyload": "^2.6.5",
"react-router-dom": "^5.0.1",
"react-share": "^4.1.0",
"shortid": "^2.2.15",
"typescript": "*",
"victory": "^35.0.2",
"webpack": "^4.41.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"http-proxy-middleware": "^0.20.0",
"husky": "^3.0.4",
"jimp": "^0.8.4",
"lint-staged": "^9.2.4",
"now": "^17.1.1",
"prettier": "^1.16.1",
"responsive-loader": "^1.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,json,scss,md}": [
"git add"
]
},
"scripts": {
"lint": "yarn eslint --fix --ignore-path './.gitignore' --ext '.js,.json,.md' './'",
"lint-staged": "yarn eslint --fix --ignore-path './.gitignore' --ext '.js,.json,.md'",
"dev": "NODE_ENV=development PORT=3000 node ./devServer.js",
"dev:now": "yarn now dev",
"build": "next build",
"start": "next start",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"predeploy": "yarn install --frozen-lockfile",
"deploy": "now --prod"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"defaults"
]
}