-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
120 lines (120 loc) · 3.54 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "frontend",
"version": "1.1.0",
"private": true,
"resolutions": {
"terser": "3.14.1"
},
"engines": {
"node": "10.x"
},
"dependencies": {
"3box": "^1.9.0",
"@antv/data-set": "0.10.1",
"@mybit-v2/contracts": "^2.0.1",
"@mybit-v2/network.js": "^2.1.0",
"@next/bundle-analyzer": "^9.4.4",
"@sentry/browser": "^5.19.2",
"@sentry/webpack-plugin": "^1.12.0",
"@zeit/next-bundle-analyzer": "0.1.2",
"@zeit/next-css": "1.0.1",
"@zeit/next-less": "^1.0.1",
"@zeit/next-source-maps": "0.0.4-canary.1",
"add": "^2.0.6",
"airtable": "^0.9.0",
"antd": "3.13.6",
"aws-sdk": "2.366.0",
"axios": "0.19.0",
"babel-plugin-import": "1.11.0",
"babel-plugin-inline-react-svg": "1.0.1",
"babel-plugin-styled-components": "1.10.0",
"babel-plugin-transform-assets-import-to-string": "1.2.0",
"bignumber.js": "^9.0.0",
"bizcharts": "3.4.1",
"civic-sip-api": "1.1.0",
"classnames": "2.2.6",
"cloudinary": "^1.22.0",
"color-hash": "1.0.3",
"compression": "1.7.3",
"cors": "2.8.5",
"dayjs": "1.8.8",
"detect-browser": "4",
"dotenv": "6.2.0",
"dotenv-webpack": "1.7.0",
"express": "4.16.4",
"formidable": "^1.2.2",
"ipfs-http-client": "^33.1.0",
"is-ipfs": "^0.6.1",
"js-cookie": "2.2.0",
"less": "3.9.0",
"less-vars-to-js": "^1.3.0",
"lint": "1.1.2",
"lodash": "^4.17.20",
"multer": "1.4.1",
"next": "^10.0.5",
"next-compose-plugins": "^2.2.0",
"node-sass-chokidar": "1.3.4",
"nodemon": "1.18.10",
"preact": "^10.0.0-beta.2",
"prop-types": "15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-facebook-pixel": "0.1.2",
"react-ga": "2.5.6",
"react-geocode": "0.1.2",
"react-google-maps-loader": "4.2.5",
"react-google-places-suggest": "3.7.1",
"react-jazzicon": "0.1.3",
"react-media": "1.9.2",
"react-resize-detector": "3.4.0",
"react-router-dom": "4.3.1",
"react-scrollable-anchor": "^0.6.1",
"react-twitter-conversion-tracker": "1.0.0",
"recompose": "0.30.0",
"regenerator-runtime": "^0.13.7",
"styled-components": "4.1.3",
"web3": "1.0.0-beta.37"
},
"scripts": {
"dev": "cross-env NODE_ENV=development NODE_OPTIONS='--max_old_space_size=4096' next dev",
"build": "next build",
"start": " cross-env NODE_ENV=production next start",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore --fix .",
"analyze": "cross-env BUNDLE_ANALYZE=both next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/preset-env": "7.2.3",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "3.2.0",
"babel-plugin-transform-remove-console": "6.9.4",
"babel-watch": "7.0.0",
"compression-webpack-plugin": "2.0.0",
"cross-env": "5.2.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.10.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"extract-text-webpack-plugin": "3.0.2",
"react-hot-loader": "4.6.3",
"rimraf": "2.6.3"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">0.25%",
"not op_mini all",
"ie 11"
]
}
}