-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.16 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
{
"name": "uncommon-ui",
"private": true,
"version": "1.0.0",
"workspaces": [
"packages/*"
],
"description": "A React component library with some common and not so common UI components",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"bootstrap": "lerna bootstrap --use-workspaces",
"build": "lerna exec --parallel -- babel --root-mode upward src -d lib --ignore **/*.stories.js,**/*.stories.mdx,**/*.test.js",
"deploy-storybook": "storybook-to-ghpages"
},
"repository": {
"type": "git",
"url": "[email protected]:Zephony/uncommon-ui.git"
},
"keywords": [
"react",
"ui",
"components",
"storybook",
"library"
],
"author": "Glen Padua",
"license": "ISC",
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"yarn": "^1.22.10"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-docs": "^6.0.21",
"@storybook/addon-knobs": "^6.0.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/react": "^6.0.21",
"@storybook/storybook-deployer": "^2.8.6",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.11.1",
"clean-webpack-plugin": "^3.0.0",
"faker": "^5.1.0",
"jest": "^26.4.2",
"jest-haste-map": "^26.3.0",
"jest-resolve": "^26.4.0",
"jest-styled-components": "^7.0.3",
"lerna": "^3.22.1",
"moment": "^2.28.0",
"path": "^0.12.7",
"react-icons": "^3.11.0",
"react-test-renderer": "^16.13.1",
"styled-components": "^5.1.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.2"
}
}