-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.07 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
66
67
68
69
{
"name": "fresh-designs",
"version": "1.2.2",
"description": "",
"main": "lib/index.js",
"browser": "lib/index.umd.js",
"module": "lib/index.es.js",
"files": [
"/lib"
],
"scripts": {
"test": "jest",
"start": "yarn storybook",
"start:styleguidist": "styleguidist server",
"build": "rollup -c",
"build:docs": "build-storybook -o docs",
"prepublishOnly": "rm -rf lib && npm run build",
"postbuild": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"storybook": "start-storybook -p 9009",
"build-storybook": "yarn build:docs",
"deploy-storybook": "storybook-to-ghpages",
"deploy": "gh-pages -d docs"
},
"keywords": [],
"author": "",
"license": "ISC",
"peerDependencies": {
"react": "^16.x",
"react-dom": "^16.8.6"
},
"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",
"@storybook/addon-actions": "^5.3.14",
"@storybook/addon-docs": "^5.3.17",
"@storybook/addon-knobs": "^5.3.14",
"@storybook/addon-links": "^5.3.14",
"@storybook/addon-storysource": "^5.3.14",
"@storybook/addons": "^5.3.14",
"@storybook/preset-create-react-app": "^1.5.2",
"@storybook/react": "^5.3.14",
"@storybook/storybook-deployer": "^2.8.3",
"@testing-library/react": "^8.0.7",
"babel-loader": "^8.0.6",
"babel-plugin-emotion": "^10.0.14",
"babel-plugin-module-resolver": "^3.2.0",
"babel-preset-react-app": "^9.1.1",
"jest": "^24.8.0",
"jest-emotion": "^10.0.14",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-styleguidist": "^9.1.13",
"rollup": "^1.18.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"
},
"dependencies": {
"styled-components": "^5.0.1"
}
}