-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
87 lines (87 loc) · 2.51 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
{
"name": "react-super-styled",
"version": "0.7.1",
"description": "Responsive JSX layouts with Styled Components",
"author": "moarwick",
"license": "MIT",
"keywords": [
"react",
"react-component",
"styled-components",
"layout",
"library",
"css"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/moarwick/react-super-styled"
},
"bugs": "https://github.com/moarwick/react-super-styled/issues",
"browserify": {
"transform": [
"reactify"
]
},
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --open --hot",
"predeploy": "npm run build",
"deploy": "gh-pages -d demo",
"precommit": "lint-staged",
"postcommit": "git reset",
"_dist": "rimraf lib && babel src/lib --out-dir lib",
"dist": "rimraf lib && babel src/lib --out-dir lib --no-babelrc --presets=env,stage-0,react --plugins=transform-es2015-modules-commonjs",
"prepublishOnly": "npm run dist",
"test": "jest --watch --no-cache"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.4",
"babel-plugin-styled-components": "^1.5.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"jest": "^23.2.0",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"progress-bar-webpack-plugin": "^1.11.0",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-hot-loader": "^4.3.12",
"react-live": "^1.10.1",
"rimraf": "^2.6.2",
"styled-components": "^4.1.2",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "3.1.4"
},
"peerDependencies": {
"react": ">= 16.0",
"react-dom": ">= 16.0",
"styled-components": ">= 4.0"
},
"lint-staged": {
"src/**/*.js": [
"prettier --single-quote --print-width 100 --trailing-comma es5 --write",
"git add"
]
}
}