-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 1.05 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
{
"name": "react-ios-corners",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Adam Pietrasiak",
"license": "MIT",
"scripts": {
"demo": "parcel demo/index.html -d demo-dist",
"demo:build": "parcel build demo/index.html -d demo-dist --public-url \"/react-ios-corners\"",
"clean": "rimraf dist",
"build:lib": "rollup --config",
"build:types": "tsc --emitDeclarationOnly",
"build": "yarn clean && yarn build:lib && yarn build:types",
"gh-pages": "gh-pages -d demo-dist -b gh-pages"
},
"peerDependencies": {
"react": "^17.0.1"
},
"devDependencies": {
"@types/node": "^14.14.7",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/styled-components": "^5.1.4",
"gh-pages": "^3.1.0",
"parcel-bundler": "^1.12.4",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.33.2",
"rollup-plugin-typescript2": "^0.29.0",
"styled-components": "^5.2.1",
"typescript": "^4.0.5"
},
"dependencies": {
"react": "^17.0.1"
}
}