This repository has been archived by the owner on Jun 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
67 lines (67 loc) · 2.08 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
{
"name": "react-atomic-structure",
"version": "1.0.0",
"description": "Basic Structure for React app following Atomic Design",
"scripts": {
"start": "webpack-dev-server --config ./webpack.dev.config.js --inline --hot --progress --colors",
"build": "webpack --config ./webpack.prod.config.js --progress --colors",
"lint": "eslint ./app/ --ext .js --ext .jsx --fix",
"watch": "webpack-dev-server --config ./webpack.dev.config.js --inline --hot --colors --watch --progress",
"clean": "rm -rf dist && npm cache clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rulox/react-atomic-structure.git"
},
"keywords": [
"react",
"atomic",
"design",
"atomic design",
"es6",
"webpack",
"sass"
],
"author": "Raul Marrero (https://github.com/Rulox/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rulox/react-atomic-structure/issues"
},
"homepage": "https://github.com/Rulox/react-atomic-structure#readme",
"dependencies": {
"autoprefixer": "^7.2.3",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^3.1.11",
"html-webpack-plugin": "^2.24.1",
"stylelint": "^8.3.1",
"stylelint-webpack-plugin": "^0.9.0",
"extract-text-webpack-plugin": "^3.0.2",
"node-sass-glob-importer": "^5.0.0-alpha.15",
"webpack-merge": "^4.1.1"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.28.7",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"file-loader": "^2.0.0",
"node-sass": "^4.7.2",
"postcss-loader": "^2.0.6",
"react-hot-loader": "^3.0.0-beta.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0"
}
}