forked from herrethan/react-confetti-explosion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.09 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
77
{
"name": "confetti-explosion-react",
"version": "0.1.2",
"description": "A React lightweight css-animation based confetti exploder",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"compile": "tsc --declaration -p ./tsconfig.json --outDir lib/",
"lint": "eslint --ext .ts,.tsx --ignore-pattern '**/*.spec.*' --ignore-pattern '**/*.d.ts' src/"
},
"husky": {
"hooks": {
"pre-commit": "NODE_ENV=production lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"pretty-quick --staged",
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/DercilioFontes/confetti-explosion-react"
},
"keywords": [
"confetti",
"explosion",
"css",
"animation",
"react",
"styles"
],
"author": "Dercilio Fontes",
"license": "MIT",
"bugs": {
"url": "https://github.com/DercilioFontes/confetti-explosion-react/issues"
},
"homepage": "https://github.com/DercilioFontes/confetti-explosion-react#readme",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/serialize": "^1.1.1",
"lodash.isequal": "^4.5.0",
"lodash.range": "^3.2.0",
"lodash.round": "^4.0.4",
"tss-react": "^4.5.2"
},
"devDependencies": {
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.range": "^3.2.7",
"@types/lodash.round": "^4.0.7",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.2",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"directories": {
"example": "example",
"lib": "lib"
}
}