-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.97 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
{
"name": "reactinator",
"version": "0.2.0",
"private": false,
"license": "MIT",
"description": "Boilerplate for web apps using React, Bootstrap 4, MobX, Babel and Webpack 3",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/moaali/reactinator.git"
},
"keywords": [
"react",
"bootstrap-4",
"mobx",
"babel",
"webpack",
"boilerplate"
],
"author": "Mo Ali",
"bugs": {
"url": "https://github.com/moaali/reactinator/issues"
},
"homepage": "https://github.com/moaali/reactinator",
"scripts": {
"start": "webpack-dev-server",
"dev": "webpack-dashboard -t 'Project' -- webpack-dev-server",
"clean": "shx rm -rf ./build",
"build": "npm run clean && cross-env NODE_ENV=\"production\" webpack",
"preview": "cross-env NODE_ENV=\"production\" webpack-dev-server",
"lint:js": "eslint ./src ./webpack ./*.js -f table --ext .js --ext .jsx",
"lint:scss": "stylelint ./src/**/*.scss --syntax scss",
"lint": "npm run lint:js && npm run lint:scss",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-plugin-syntax-do-expressions": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"cross-env": "^5.1.3",
"css-loader": "^0.28.8",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"imagemin-webpack-plugin": "^1.6.1",
"node-sass": "^4.7.2",
"postcss-cssnext": "^3.0.2",
"postcss-loader": "^2.0.10",
"react-hot-loader": "^3.1.3",
"sass-loader": "^6.0.6",
"shx": "^0.2.2",
"style-loader": "^0.19.1",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.0.0",
"webpack": "^3.10.0",
"webpack-dashboard": "^1.0.2",
"webpack-dev-server": "^2.11.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"bootstrap": "4.0.0-beta.3",
"classnames": "^2.2.5",
"core-decorators": "^0.20.0",
"es6-promise": "^4.2.2",
"file-loader": "^1.1.6",
"js-md5": "^0.7.3",
"lodash": "^4.17.4",
"mobx": "^3.4.1",
"mobx-react": "^4.3.5",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-icons": "^2.2.7",
"react-motion": "^0.5.2",
"react-router-dom": "^4.2.2",
"reactstrap": "^4.8.0",
"whatwg-fetch": "^2.0.3"
}
}