-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
{
"name": "basedp-ui",
"version": "1.0.4",
"description": "A set of primitive react components based on styled components and styled-system.",
"main": "dist/index.js",
"files": [
"./dist/index.js"
],
"scripts": {
"prepare": "npm run clean && npm run build",
"clean": "rm -rf dist",
"start": "webpack-dev-server --config ./examples/webpack.config.dev.js",
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"size": "npx bundlesize"
},
"publishConfig": {
"registry": "https://verdaccio.kube.teledirekt.ru/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dapetrov0/basedp-ui.git"
},
"keywords": [
"react",
"components",
"styled-components",
"styled-system"
],
"author": "dapetrov0",
"license": "MIT",
"bugs": {
"url": "https://github.com/dapetrov0/basedp-ui/issues"
},
"homepage": "https://github.com/dapetrov0/basedp-ui#readme",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"LandingContext": "^1.0.0",
"babel-loader": "^8.0.4",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"styled-components": "^4.1.1",
"styled-system": "^3.1.11",
"url-loader": "^1.1.2",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"peerDependencies": {
"styled-components": "^4.1.1",
"styled-system": "^3.1.11"
},
"bundlesize": [
{
"path": "dist/*"
}
]
}