-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.04 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
80
81
82
83
84
{
"name": "react-mixitup",
"version": "4.0.6",
"description": "Animate the addition, removal and shuffling of elements in react",
"keywords": [
"react",
"component",
"mixitup",
"shuffle",
"grid",
"animate",
"transition",
"animation"
],
"main": "dist/react-mixitup.umd.js",
"module": "dist/react-mixitup.es5.js",
"typings": "dist/types/react-mixitup.d.ts",
"homepage": "https://react-mixitup.ricsam.dev",
"files": [
"dist"
],
"author": "Richie<[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ricsam/react-mixitup.git"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc --module commonjs && rollup -c rollup.config.ts",
"test": "react-scripts test --env=jsdom"
},
"resolutions": {
"@types/eslint": "8.4.1"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"src/*.{js,ts,tsx}"
]
},
"prettier": {
"semi": true,
"singleQuote": true
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.14.178",
"@types/node": "^16.18.3",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/react-test-renderer": "^18.0.0",
"prettier": "^1.14.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"react-test-renderer": "^18.2.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.31.2",
"typedoc": "^0.22.12",
"typescript": "~4.4.2",
"web-vitals": "^2.1.4"
},
"peerDependencies": {
"react": ">=16.8"
},
"dependencies": {}
}