-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 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
{
"name": "react-spring-animated-grid",
"version": "0.2.1",
"description": "width aware animated grid for react",
"license": "MIT",
"author": "Miguel Alcalde",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"keywords": [
"react",
"react-spring",
"width",
"resize",
"grid"
],
"homepage": "https://github.com/MikeMajara/react-spring-animated-grid",
"bugs": {
"url": "https://github.com/MikeMajara/react-spring-animated-grid/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MikeMajara/react-spring-animated-grid.git"
},
"dependencies": {
"react-use": "15.3.8"
},
"peerDependencies": {
"react": "~17.0.0",
"react-dom": "~17.0.0",
"react-spring": "~8.0.27"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.21",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"microbundle": "^0.13.0",
"react": "~17.0.0",
"react-dom": "~17.0.0",
"react-scripts": "3.4.3",
"react-spring": "~8.0.27",
"react-use": "15.3.8",
"typescript": "^3.8.3"
},
"scripts": {
"start": "react-scripts start",
"build": "microbundle --jsx React.createElement",
"dev": "microbundle watch --jsx React.createElement --no-compress",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}