-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.58 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.58 KB
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
{
"version": "2.0.0",
"license": "MIT",
"source": "src/react-award.tsx",
"main": "dist/react-award.js",
"typings": "dist/react-award.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rm -rf dist && microbundle src/react-award.tsx src/react-award-light.tsx --no-compress --format modern,cjs -o dist --jsx React.createElement",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "react-award",
"description": "React component for rewarding users",
"author": "Fede Martin",
"repository": {
"type": "git",
"url": "git+https://github.com/fedemartinm/react-award.git"
},
"bugs": {
"url": "https://github.com/fedemartinm/react-award/issues"
},
"keywords": [
"react",
"gamification",
"awards",
"lottie"
],
"devDependencies": {
"@size-limit/preset-small-lib": "^8.1.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"autoprefixer": "^10.4.13",
"cssnano": "^5.1.14",
"husky": "^8.0.3",
"microbundle": "^0.15.1",
"postcss": "^8.4.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-postcss": "^4.0.2",
"size-limit": "^8.1.0",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"dependencies": {
"lottie-web": "^5.6.10",
"react-transition-state": "^2.0.2"
}
}