-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.75 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
{
"name": "react-animated-list",
"keywords": [
"react",
"react-dom",
"animation",
"component",
"react-component",
"flip",
"web-animations",
"array"
],
"version": "0.1.4",
"repository": "http://github.com/hesto2/react-animated-list",
"description": "Simple way of animating when components are added or removed from an array",
"main": "index.es.js",
"module": "index.es.js",
"jsnext:main": "index.es.js",
"license": "MIT",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "echo no tests yet",
"dotest": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build": "rollup -c; cp ./package.json ./dist/package.json; cp ./README.md ./dist/README.md",
"start": "rollup -c -w",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"dependencies": {
"@material-ui/core": "^4.4.0",
"use-state-api-hooks": "^1.2.1"
},
"peerDependencies": {
"@material-ui/core": "^4.4.0",
"react": "^16.9.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@types/jest": "^23.3.13",
"@types/lodash": "^4.14.141",
"@types/react": "^16.9.2",
"cross-env": "^5.2.0",
"gh-pages": "^2.0.1",
"lodash": "^4.17.15",
"react": "^16.9.0",
"react-scripts": "^3.1.1",
"rollup": "^1.24.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.24.3",
"rollup-plugin-url": "^2.1.0",
"typescript": "^3.6.4"
},
"publishConfig": {
"access": "public"
}
}