forked from Swiggy/swipeable-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "marschattha-swipeable-tabs",
"version": "0.1.15",
"description": "React Tabs Component That supports Swiping across screen to switch tabs",
"keywords": [
"react",
"tabs",
"tab",
"ui",
"swipe",
"component"
],
"author": "Shreya <[email protected]>",
"homepage": "https://github.com/shreya0712/swipeable-tabs",
"main": "dist/index.js",
"types": "dist/index.d.js",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development parcel example/index.html --no-cache -d example/build",
"build": "webpack -p",
"build:analyze": "ANALYZE=true webpack -p",
"build:watch": "NODE_ENV=development webpack --watch",
"publish:npm": "npm publish --access public"
},
"peerDependencies": {
"@emotion/core": "^10.0.17",
"@emotion/styled": "^10.0.17",
"react": "^16.8.0"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1"
},
"devDependencies": {
"@ahrakio/witty-webpack-declaration-files": "^1.0.3",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@types/node": "^12.11.5",
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"@types/webpack": "^4.39.5",
"@types/webpack-dev-server": "^3.4.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.0.0",
"path": "^0.12.7",
"ts-loader": "^6.2.1",
"ts-node": "^8.4.1",
"typedoc-webpack-plugin": "^1.1.4",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.9"
}
}