forked from smooth-code/smooth-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.85 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
{
"name": "smooth-ui",
"description": "React Components library based on Styled Components",
"version": "4.2.1",
"keywords": [
"styled-components",
"ui",
"ui-components",
"react",
"material-ui",
"bootstrap"
],
"main": "dist/smooth-ui.cjs.js",
"module": "dist/smooth-ui.es.js",
"jsnext:main": "dist/smooth-ui.es.js",
"author": "Greg Bergé <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn build:cp && yarn build:rollup && yarn build:lib && yarn build:docs",
"build:cp": "shx mkdir -p build/ && shx cp {package.json,README.md} build/",
"build:docs": "styleguidist build",
"build:lib": "cross-env BABEL_ENV=lib babel --out-dir build src",
"build:rollup": "cross-env BABEL_ENV=rollup rollup -c",
"build:watch": "yarn build:lib --watch",
"ci": "yarn lint && yarn test",
"deploy:docs": "firebase deploy",
"dev": "styleguidist server",
"lint": "eslint .",
"prebuild": "shx rm -rf build",
"release": "standard-version && conventional-github-releaser --preset angular && yarn build && yarn deploy:docs",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.49",
"@babel/core": "^7.0.0-beta.49",
"@babel/plugin-external-helpers": "^7.0.0-beta.49",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.49",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.49",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/preset-react": "^7.0.0-beta.49",
"babel-core": "^7.0.0-0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"conventional-github-releaser": "^2.0.2",
"cross-env": "^5.1.6",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"jest": "^23.0.1",
"jest-styled-components": "^5.0.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-styleguidist": "^7.0.14",
"react-test-renderer": "^16.4.0",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^4.0.0-beta.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0",
"shx": "^0.2.2",
"standard-version": "^4.4.0",
"styled-components": "^3.3.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.9.1"
},
"dependencies": {
"classnames": "^2.2.5",
"polished": "^1.9.2",
"prop-types": "^15.6.1",
"react-transition-group": "^2.3.1",
"recompact": "^3.3.0"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0",
"styled-components": "=>3.0.0"
}
}