-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·62 lines (62 loc) · 1.81 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
{
"name": "@ampproject/storybook-addon",
"version": "1.1.10",
"description": "Storybook addon for building and testing AMP components",
"module": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ampproject/storybook-addon-amp.git"
},
"homepage": "https://github.com/ampproject/storybook-addon-amp",
"author": "The AMP HTML Authors",
"license": "Apache-2.0",
"files": [
"dist",
"register.js"
],
"peerDependencies": {
"@storybook/addons": "^6.4.18",
"@storybook/components": "^6.4.18",
"@storybook/theming": "^6.4.18",
"react": "^17.0.2"
},
"devDependencies": {
"@babel/core": "7.17.2",
"@babel/preset-react": "7.16.7",
"@babel/runtime-corejs3": "7.17.2",
"@storybook/addon-actions": "6.4.19",
"@storybook/addon-knobs": "6.4.0",
"@storybook/addon-links": "6.4.19",
"@storybook/addons": "6.4.19",
"@storybook/components": "6.4.19",
"@storybook/core-events": "6.4.19",
"@storybook/preact": "6.4.19",
"@storybook/theming": "6.4.19",
"@types/react": "17.0.39",
"@types/webpack-env": "1.16.3",
"babel-loader": "8.2.3",
"core-js": "3.21.0",
"esbuild": "0.14.21",
"minimist": "1.2.5",
"react": "17.0.2"
},
"scripts": {
"dev": "tsc --watch --preserveWatchOutput",
"build": "node bin/build.mjs",
"watch": "npm run build -- --watch",
"test": "echo 'No tests' && exit 0",
"clean": "rm -r dist",
"prepublishOnly": "npm run build",
"storybook": "start-storybook -p 9009 -s public -c test/.storybook",
"build-storybook": "build-storybook -s public -c test/.storybook"
},
"dependencies": {
"@storybook/client-api": "6.4.19",
"preact": "10.6.5",
"preact-render-to-string": "5.1.19",
"react-dom": "17.0.2"
},
"publishConfig": {
"tag": "latest"
}
}