-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.58 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
{
"name": "leafy-react",
"version": "0.0.14",
"description": "Leafy design system - react component library",
"main": "thylakoid/index.js",
"files": [
"thylakoid/*",
"thylakoid-icons/*",
"src/styles/*"
],
"scripts": {
"generate-icon": "node scripts/iconIndex.js",
"generate-component": "node scripts/iconIndex.js",
"gulp": "gulp style --gulpfile scripts/gulpfile.js",
"rollup": "rollup -c scripts/rollup.config.js",
"release": "standard-version",
"lazygit": "git add . && git commit -a -m '$1' && git push origin master",
"build": "rm -rf thylakoid && npm run generate-icon && npm run rollup && npm run gulp",
"publish": "npm run release && npm run lazygit && npm publish",
"storybook": "npm run generate-icon && start-storybook",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexxsexotic/leafy-design-system.git"
},
"keywords": [
"react",
"design-system",
"components"
],
"author": "alexsexotic <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/alexxsexotic/leafy-design-system/issues"
},
"homepage": "https://github.com/alexxsexotic/leafy-design-system#readme",
"devDependencies": {
"@storybook/addon-actions": "^5.2.5",
"@storybook/addon-info": "^5.2.5",
"@storybook/addon-knobs": "^5.2.5",
"@storybook/addons": "^5.2.5",
"@storybook/react": "^5.2.5",
"@svgr/rollup": "^4.3.3",
"@svgr/webpack": "^4.3.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"classnames": "^2.2.6",
"css-loader": "^3.2.0",
"glob": "^7.1.5",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-sass": "^4.0.2",
"merge-stream": "^2.0.0",
"node-sass": "^4.13.0",
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"postcss-simple-vars": "^5.0.2",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"rollup": "^1.26.3",
"rollup-plugin-analyzer": "^3.2.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-terser": "^5.1.2",
"sass-loader": "^8.0.0",
"standard-version": "^7.0.0",
"style-loader": "^1.0.0"
},
"peerDependencies": {
"react": "^16.11.0",
"react-dom": "^16.11.0"
}
}