-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
65
{
"name": "react-instagram-ui-kit",
"version": "0.2.5-beta",
"description": "Basic Instagram components in React",
"main": "lib/index.js",
"browser": "lib/index.umd.js",
"module": "lib/index.es.js",
"files": [
"/lib"
],
"scripts": {
"start": "styleguidist server",
"docs:build": "styleguidist build",
"build": "NODE_ENV=production rollup -c",
"prepublishOnly": "rm -rf lib && npm run build",
"postbuild": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"test": "jest"
},
"peerDependencies": {
"@emotion/core": "10.x",
"@emotion/styled": "10.x",
"react": "^16.x",
"react-dom": "^16.x"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@emotion/core": "^10.0.14",
"@emotion/styled": "^10.0.14",
"babel-loader": "^8.0.6",
"babel-plugin-emotion": "^10.0.14",
"babel-plugin-module-resolver": "^3.2.0",
"common-tags": "^1.8.0",
"jest": "^24.8.0",
"jest-each": "^24.8.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-is": "^16.8.6",
"react-styleguidist": "^9.1.13",
"rollup": "^1.17.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-uglify": "^6.0.2",
"webpack": "^4.38.0"
},
"author": "Tomasz Fiechowski <tomasz.fiechowski@gmail.com>",
"homepage": "https://github.com/tfiechowski/react-instagram-ui-kit",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:tfiechowski/react-instagram-ui-kit.git"
},
"keywords": [
"react-component",
"instagram",
"components"
]
}