-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.2 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
{
"name": "confetti-cannon",
"version": "2.1.2",
"description": "",
"homepage": "https://discord.github.io/confetti-cannon/",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "prettier --write .",
"build": "rm -rf ./dist && rollup -c --bundleConfigAsCjs",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "storybook dev -p 6006",
"predeploy": "npm run build-storybook",
"deploy-storybook": "gh-pages -d storybook-static",
"build-storybook": "storybook build"
},
"repository": "github:discord/confetti-cannon",
"author": "@discord",
"keywords": [
"confetti",
"cannon"
],
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@storybook/addon-essentials": "^7.0.12",
"@storybook/addon-interactions": "^7.0.12",
"@storybook/addon-links": "^7.0.12",
"@storybook/blocks": "^7.0.12",
"@storybook/react": "^7.0.12",
"@storybook/react-webpack5": "^7.0.12",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/invariant": "^2.2.35",
"@types/react": "^18.2.6",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.41.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^5.0.0",
"prettier": "2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"prop-types": "^15.8.1",
"rollup": "^3.22.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^7.0.12",
"storybook-css-modules": "^1.0.8",
"tslib": "^2.5.2",
"typescript": "^5.0.4",
"typescript-plugin-css-modules": "^5.0.1"
},
"peerDependencies": {
"classnames": "^2.3.2",
"invariant": "^2.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^9.0.0"
}
}