forked from lisk-builders/lisk-builders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.57 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
{
"name": "react-es6-webpack-boilerplate",
"version": "5.0.0",
"description": "Boilerplate for kick starting a React Project with ES6 (Babel) and Hot reloader using Webpack.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode=development",
"update": "git submodule foreach --recursive git reset --hard origin/artifacts",
"build": "npm run update; cross-env BABEL_ENV=production webpack --config webpack.config.production.js --optimize-minimize --mode=production",
"lint": "eslint --cache --ignore-path .gitignore --format=node_modules/eslint-formatter-pretty . *.js",
"test": "npm run lint",
"postinstall": "rm -rf build/liskbuttons; cp -R node_modules/@lisk-builders/lisk-buttons/dist/liskbuttons build/liskbuttons"
},
"repository": {
"type": "git",
"url": "https://github.com/vasanthk/react-es6-webpack-boilerplate.git"
},
"keywords": [
"react",
"es6",
"babel",
"webpack"
],
"author": "Vasanth Krishnamoorthy (http://www.vasanthk.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vasanthk/react-es6-webpack-boilerplate/issues"
},
"homepage": "https://github.com/vasanthk/react-es6-webpack-boilerplate",
"dependencies": {
"@lisk-builders/lisk-buttons": "^0.6.0",
"axios": "^0.18.0",
"bignumber.js": "^7.2.1",
"classnames": "^2.2.6",
"cross-env": "^5.2.0",
"lisk-elements": "^1.0.0",
"lodash": "^4.17.11",
"mobx": "^4.2.0",
"mobx-react": "^5.0.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-hot-loader": "4.3.11",
"react-joyride": "^1.11.4",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"@babel/core": "7.1.0",
"@types/classnames": "2.2.6",
"@types/history": "4.7.0",
"@types/lodash": "^4.14.116",
"@types/node": "10.11.0",
"@types/react": "^16.4.14",
"@types/react-dom": "16.0.7",
"@types/react-router": "4.0.31",
"@types/webpack": "4.4.12",
"@types/webpack-env": "1.13.6",
"awesome-typescript-loader": "^5.2.1",
"babel-cli": "7.0.0-beta.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-compat": "^2.5.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"typescript": "^3.0.3",
"webpack": "^4.20.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9"
}
}