-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 3.05 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
{
"name": "projansky-contract",
"version": "2.0.0",
"private": true,
"license": "MIT",
"description": "",
"scripts": {
"clean": "rimraf dist",
"build": "webpack --progress --verbose --colors --display-error-details --config webpack/common.config.babel.js",
"build:production": "npm run clean && npm run build",
"deploy": "gh-pages -d build",
"lint": "eslint src",
"precommit": "lint-staged",
"start": "webpack-dev-server --mode development --config ./webpack/common.config.babel.js",
"test": "bin/test.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/hackingbeauty/react-dapp-boilerplate.git"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"@babel/runtime": "^7.4.5",
"autoprefixer": "^6.6.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.0",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"exports-loader": "^0.6.2",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"ignore-styles": "^2.0.0",
"imports-loader": "^0.6.5",
"jsdom": "^9.2.1",
"mini-css-extract-plugin": "^0.4.0",
"mocha": "^6.2.0",
"morgan": "^1.6.1",
"node-sass": "^4.9.2",
"precss": "^4.0.0",
"react-hot-loader": "^1.3.0",
"react-transform-hmr": "^1.0.1",
"resolve-url-loader": "^2.3.0",
"rimraf": "^2.5.0",
"sass-extract": "^2.1.0",
"sass-extract-js": "^0.3.0",
"sass-extract-loader": "^1.1.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^4.29.6",
"webpack-cli": "^3.0.7",
"webpack-hot-middleware": "^2.6.0",
"webpack-merge": "^4.1.3",
"webpack-pwa-manifest": "^3.6.2"
},
"dependencies": {
"@material-ui/core": "^3.1.1",
"@material-ui/icons": "^3.0.1",
"keymirror": "^0.1.1",
"openzeppelin-solidity": "^2.3.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dnd": "^6.0.0",
"react-dnd-html5-backend": "^6.0.0",
"react-dom": "^16.5.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"remixd": "^0.1.8-alpha.6",
"sha256": "^0.2.0",
"truffle-contract": "^3.0.6",
"validator": "^10.9.0",
"web3": "0.20.6",
"webpack-dev-server": "^3.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.js": [
"eslint --fix",
"git add"
]
}
}