-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.76 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@jimjamz/sweet-ui",
"version": "1.0.4",
"description": "Styled-components based UI library",
"main": "index.js",
"scripts": {
"prepublishOnly": "npm run release",
"release": "npm run styleguide:build && npm run build:dev && npm run build:prod",
"start": "nodemon -w src -x npm run build:dev",
"build:dev": "NODE_ENV=development rollup -c",
"build:prod": "npm run styleguide:build && NODE_ENV=production rollup -c",
"styleguide": "styleguidist server --open",
"styleguide:build": "styleguidist build",
"clean": "rimraf -r ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jimmyjamieson/sweet-ui.git"
},
"author": "Ian Jamieson",
"license": "ISC",
"bugs": {
"url": "https://github.com/jimmyjamieson/sweet-ui/issues"
},
"homepage": "https://jimmyjamieson.github.io/sweet-ui/",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-styled-components": "^1.10.0",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.5.0",
"nodemon": "^1.18.10",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-styleguidist": "^9.0.4",
"rimraf": "^2.6.3",
"rollup": "^1.6.0",
"rollup-plugin-analyzer": "^3.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.2",
"rollup-plugin-visualizer": "^1.0.2",
"style-loader": "^0.23.1",
"webpack": "^4.29.6"
},
"dependencies": {
"@babel/runtime": "^7.3.4",
"lodash": "^4.17.11",
"mapbox-gl": "^0.53.1",
"polished": "^3.0.3",
"react-map-gl": "^4.1.1",
"rollup-plugin-async": "^1.2.0",
"styled-components": "^4.1.3"
},
"peerDependencies": {
"react": "*",
"react-dom": "*",
"prop-types": "*"
},
"directories": {
"doc": "docs"
},
"keywords": [
"styled-components",
"ui"
]
}