-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (73 loc) · 2.11 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
{
"name": "@mozilla/lilypad-ui",
"version": "2.0.6",
"description": "React Component UI Libray",
"scripts": {
"sb": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"ru": "rollup -c",
"deploy-storybook": "storybook-to-ghpages --source-branch=main --ci",
"publish": "if [ $(git rev-parse --abbrev-ref HEAD) = 'main' ]; then npm publish; else echo 'You are not on the main branch!'; fi"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/lilypad.git"
},
"keywords": [
"React",
"JavaScript",
"Component",
"UI"
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla/lilypad/issues"
},
"homepage": "https://github.com/mozilla/lilypad#readme",
"devDependencies": {
"@babel/core": "^7.18.6",
"@mdx-js/react": "^1.6.22",
"@rollup/plugin-commonjs": "22.0.1",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-typescript": "8.3.3",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/storybook-deployer": "^2.8.12",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.2.4",
"babel-loader": "^8.2.5",
"html-webpack-plugin": "^5.5.0",
"node-sass": "^9.0.0",
"postcss": "^8.1.9",
"postcss-loader": "^4.1.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rollup": "2.77.0",
"rollup-plugin-dts": "4.2.2",
"rollup-plugin-postcss": "4.0.2",
"sass": "^1.53.0",
"sass-loader": "^12.6.0",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"webpack": "^5.73.0"
},
"peerDependencies": {
"react": ">=16.13.1"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"resolutions": {
"postcss": "8"
},
"author": "Nick Grato & Nikki Sharpley & Kate Taylor (Design)"
}