forked from happeo/happeouikit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.21 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
{
"workspaces": {
"packages": [
"packages/*"
]
},
"homepage": "https://uikit.happeo.com/",
"private": true,
"author": "Happeo Oy",
"contributors": [
"Perttu Ristimella <perttu.ristimella@happeo.com>"
],
"license": "MIT",
"name": "happeouikit",
"version": "1.0.0",
"description": "Happeo Component Kit for React, this package holds multiple published packages",
"main": "index.js",
"scripts": {
"clear:dist": "lerna exec -- rm -rf dist",
"compile": " yarn clear:dist && NODE_ENV=production BABEL_ENV=production lerna exec -- babel --root-mode upward src -d dist",
"build": "yarn compile",
"build:docs": "yarn docz build",
"publish": "yarn build && lerna publish",
"publish:single": "node ./scripts/release/index.js",
"dev": "BABEL_ENV=development yarn docz dev",
"serve": "yarn docz serve",
"generate": "plop --plopfile scripts/generator/index.js",
"docs:deploy:draft": "netlify deploy --dir .docz/dist",
"docs:deploy": "netlify deploy --dir .docz/dist --prod",
"cleaninstall": "rm -rf ./.docz && rm -rf node_modules/ && lerna bootstrap"
},
"keywords": [],
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@svgr/cli": "^3.1.0",
"babel-plugin-styled-components": "^1.8.0",
"chalk": "^2.4.1",
"inquirer": "^6.2.0",
"lerna": "^3.16.4",
"lodash.camelcase": "^4.3.0",
"lodash.capitalize": "^4.2.1",
"lodash.kebabcase": "^4.1.1",
"lodash.upperfirst": "^4.3.1",
"netlify-cli": "^2.2.0",
"plop": "^2.1.0",
"prettier": "^1.14.2",
"semver": "^5.6.0"
},
"dependencies": {
"@happeo/docs-tools": "1.0.1",
"docz": "2.1.1",
"prop-types": "^15.7.2",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"styled-components": "^4.4.1"
},
"publishConfig": {
"access": "public"
}
}