-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 2.13 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
78
79
{
"name": "react-sparkle",
"version": "2.0.0",
"description": "A React component to increase the number of sparkles in your app",
"homepage": "https://github.com/kmjennison/react-sparkle",
"bugs": "https://github.com/kmjennison/react-sparkle/issues",
"main": "dist/index.js",
"types": "react-sparkle.d.ts",
"scripts": {
"test": "yarn run lint && jest --env=jsdom",
"start": "webpack --watch",
"build": "NODE_ENV=production webpack",
"lint": "eslint \"**/*.{js,jsx}\""
},
"keywords": [
"react",
"sparkle",
"sparkles",
"react-component",
"glitter",
"canvas"
],
"author": "Kevin Jennison",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@testing-library/react": "^13.4.0",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.0",
"babel-polyfill": "^6.26.0",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.3.1",
"prettier": "2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@juggle/resize-observer": "^3.4.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"setupFiles": [
"jest-canvas-mock"
],
"setupFilesAfterEnv": [
"<rootDir>/setupTests.js"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](build|dist|docs|node_modules)[/\\\\]"
],
"testEnvironment": "node",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
]
},
"peerDependencies": {
"react": ">=16.8.0 <19"
}
}