-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
123 lines (123 loc) · 3.37 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
121
122
123
{
"name": "mybit-website",
"version": "1.0.0",
"main": "server.js",
"repository": "[email protected]:MyBitFoundation/MyBit.io.git",
"author": "Jose Aguinaga <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"abi-decoder": "^1.2.0",
"animated-scroll-to": "^1.2.2",
"antd": "^3.9.2",
"autoprefixer": "^7.1.6",
"axios": "^0.18.0",
"babel-plugin-import": "^1.10.0",
"babel-plugin-inline-react-svg": "^0.4",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-assets-import-to-string": "^1.2.0",
"babel-plugin-wrap-in-js": "^1.1.1",
"compression": "^1.7.3",
"compression-webpack-plugin": "^1.1.6",
"cssnano": "^4.1.4",
"dayjs": "^1.7.7",
"del-cli": "^1.1.0",
"detect-browser": "^3.0.1",
"dotenv": "^6.2.0",
"eslint-config-prettier": "^2.6.0",
"eslint-config-xo-react": "^0.13.0",
"eslint-plugin-react": "^7.8.2",
"express": "^4.16.2",
"file-loader": "^1.1.5",
"flexboxgrid-sass": "^8.0.5",
"geoip-lite": "^1.3.4",
"gh-pages": "^1.2.0",
"glob": "^7.1.2",
"gridlex": "^2.7.1",
"husky": "^0.14.3",
"i18next": "11.9.0",
"i18next-browser-languagedetector": "2.2.3",
"i18next-express-middleware": "1.4.0",
"i18next-node-fs-backend": "2.1.0",
"i18next-xhr-backend": "1.5.1",
"include-media": "^1.4.9",
"ip-regex": "^3.0.0",
"isomorphic-unfetch": "^3.0.0",
"lint-staged": "^7.3.0",
"next": "^7.0.2",
"next-routes": "^1.4.2",
"node-sass": "^4.9.3",
"normalize.css": "^7.0.0",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^2.1.5",
"prettier": "^1.13.4",
"prop-types": "^15.6.2",
"raw-loader": "^0.5.1",
"react": "^16.5.2",
"react-animated-number": "^0.4.4",
"react-countdown-now": "^1.3.0",
"react-dom": "^16.5.2",
"react-facebook-pixel": "^0.1.1",
"react-ga": "^2.5.3",
"react-i18next": "7.13.0",
"react-mailchimp-subscribe": "^2.0.2",
"react-markdown": "^4.0.3",
"react-select": "^1.2.1",
"react-twitter-conversion-tracker": "^1.0.0",
"react-waypoint": "^8.0.2",
"react-youtube": "^7.6.0",
"request-ip": "^2.1.3",
"sass-loader": "^7.1.0",
"style-loader": "0.20.3",
"typedarray-to-buffer": "^3.1.5",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^0.6.2",
"web3": "1.0.0-beta.37",
"webpack-bundle-analyzer": "^3.0.2",
"websocket": "^1.0.28",
"xo": "^0.18.2"
},
"xo": {
"envs": [
"node",
"browser"
],
"extends": [
"prettier",
"xo-react"
],
"rules": {
"import/extensions": 0,
"capitalized-comments": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"react/no-danger": 0,
"import/no-unassigned-import": 0,
"import/prefer-default-export": 0,
"react/jsx-indent-props": [
2,
2
],
"react/jsx-indent": [
2,
2
],
"react/jsx-tag-spacing": 0,
"react/jsx-no-bind": 0,
"react/forbid-component-props": 0
}
},
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"precommit": "lint-staged",
"now-start": "NODE_ENV=production node server.js"
},
"lint-staged": {
"{componentes,pages}/**/*.js": [
"prettier --single-quote --no-semi --write",
"git add"
]
}
}