forked from vlddlv/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.67 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.67 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
114
115
116
117
118
119
120
121
122
{
"name": "frontend",
"version": "0.1.0",
"homepage": "https://pleasecom.github.io",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/PleaseDotCom/frontend.git"
},
"bugs": {
"url": "https://github.com/PleaseDotCom/frontend/issues"
},
"license": "MIT",
"dependencies": {
"@ledgerhq/hw-transport-u2f": "^4.7.3",
"@ledgerhq/web3-subprovider": "^4.11.1",
"axios": "^0.18.0",
"babel-plugin-transform-semantic-ui-react-imports": "^1.3.1",
"clipboard-copy": "^2.0.0",
"ethers": "^3.0.17",
"fine-uploader": "^5.16.2",
"formik": "0.11.11",
"gh-pages": "^1.1.0",
"google-map-react": "^1.0.0",
"history": "^4.7.2",
"i18next": "^11.3.5",
"js-cookie": "^2.2.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"moment": "^2.22.1",
"now": "^11.2.4",
"parse": "^1.11.1",
"prop-types": "^15.6.1",
"qs": "^6.5.2",
"raven-js": "^3.25.2",
"react": "^16.2.0",
"react-app-rewire-styled-components": "^3.0.2",
"react-beautiful-dnd": "7.1.2",
"react-coinbase-commerce": "^1.2.0",
"react-dates": "^18.1.0",
"react-day-picker": "^7.1.4",
"react-dom": "^16.2.0",
"react-fine-uploader": "^1.1.0",
"react-i18next": "^7.8.0",
"react-imgix": "^7.2.0",
"react-media": "^1.8.0",
"react-paginate": "^5.2.3",
"react-places-autocomplete": "^7.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.1",
"react-select": "^1.2.1",
"react-slick": "^0.23.1",
"react-stripe-elements": "2.0.1",
"react-transition-group": "1.x",
"react-truncate": "^2.3.0",
"react-waypoint": "^8.0.3",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-segment": "^1.6.2",
"redux-thunk": "^2.2.0",
"semantic-ui-css": "2.3.1",
"semantic-ui-react": "0.82.5",
"serve": "^9.1.0",
"slick-carousel": "^1.8.1",
"styled-components": "^3.2.3",
"validator": "^9.4.1",
"web3": "1.0.0-beta.34",
"web3-provider-engine": "14.0.4"
},
"scripts": {
"start": "HTTPS=true react-app-rewired start",
"now-start": "serve ./build --single",
"build": "REACT_APP_NODE_ENV=production react-app-rewired build",
"now-build": "REACT_APP_NODE_ENV=staging react-app-rewired build",
"build:staging": "REACT_APP_NODE_ENV=staging react-app-rewired build",
"postbuild": "mkdir -p build/.circleci && cp -r .circleci/* build/.circleci/",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "pretty-quick --staged",
"predeploy": "true || REACT_APP_NODE_ENV=production npm run build",
"deploy": "true || gh-pages -d build --dotfiles true",
"prettier-all": "prettier --write '**/*.{js,json,jsx,yml,yaml,md}'",
"lint-staged": "lint-staged"
},
"devDependencies": {
"duplicate-package-checker-webpack-plugin": "^2.1.0",
"enzyme": "^3.3.0",
"husky": "^1.0.0-rc.14",
"lint-staged": "^7.2.0",
"prettier": "1.14.2",
"react-app-rewire-lodash": "^2.0.0",
"react-app-rewire-preload-plugin": "^1.0.0",
"react-app-rewire-webpack-bundle-analyzer": "^1.0.1",
"react-app-rewired": "^1.5.2",
"webpack-bundle-analyzer": "^2.13.1"
},
"resolutions": {
"eventemitter3": "1.2.0",
"inherits": "2.0.3",
"bn.js": "4.11.8",
"elliptic": "6.4.0",
"setimmediate": "1.0.5",
"web3-provider-engine": "14.0.5"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "./pre-commit.sh"
}
}
}