forked from notrab/react-use-cart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.31 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
{
"name": "react-use-cart",
"version": "0.0.0-semantic-release",
"description": "React hook library for managing cart state.",
"author": "Jamie Barton <[email protected]> (https://twitter.com/notrab)",
"license": "MIT",
"main": "dist/react-use-cart.cjs.js",
"module": "dist/react-use-cart.es.js",
"repository": "notrab/react-use-cart",
"homepage": "https://github.com/notrab/react-use-cart",
"bugs": "https://github.com/notrab/react-use-cart/issues",
"files": [
"dist"
],
"keywords": [
"react",
"commerce",
"cart",
"hooks"
],
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/plugin-transform-runtime": "7.10.1",
"@babel/preset-env": "7.10.2",
"@babel/preset-react": "7.10.1",
"@babel/runtime": "7.10.2",
"@testing-library/react-hooks": "3.3.0",
"jest": "26.0.1",
"prettier": "2.0.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-test-renderer": "16.13.1",
"rollup": "2.12.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-peer-deps-external": "2.2.2"
},
"peerDependencies": {
"react": ">= 16.8.0"
}
}