-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
76 lines (76 loc) · 2.34 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
{
"name": "react-rewards",
"version": "2.0.3",
"description": "This package lets you easily add micro-interactions to your app and reward users with the rain of confetti, emoji or balloons.",
"author": "thedevelobear",
"license": "MIT",
"main": "dist/react-rewards.js",
"jsnext:main": "dist/react-rewards.es.js",
"module": "dist/react-rewards.es.js",
"types": "dist/react-rewards.d.ts",
"homepage": "https://github.com/thedevelobear/react-rewards",
"repository": {
"url": "https://github.com/thedevelobear/react-rewards"
},
"keywords": [
"react",
"react-rewards",
"confetti",
"emoji",
"balloons",
"cannon",
"microinteractions",
"micro-interactions",
"UI",
"UX"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"prepublish": "yarn lint && rm -rf dist && NODE_ENV=production yarn build"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/node": "^16.11.26",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"esbuild": "^0.14.27",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-config-wesbos": "^3.0.2",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"rollup": "^2.70.1",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-esbuild": "^4.8.2",
"rollup-plugin-import-css": "^3.0.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.6.2"
}
}