forked from interactivethings/catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
137 lines (137 loc) · 3.71 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "catalog",
"version": "3.4.0",
"description": "Create living style guides using Markdown or React",
"keywords": [
"styleguide",
"style guide",
"docs",
"documentation",
"react",
"markdown"
],
"homepage": "https://www.catalog.style/",
"bugs": "https://github.com/interactivethings/catalog/issues",
"main": "dist/catalog.cjs.js",
"module": "dist/catalog.es.js",
"unpkg": "dist/catalog-standalone.min.js",
"engines": {
"npm": ">=2.14.12"
},
"files": [
"dist",
"babel.js",
"loader.js",
"types"
],
"types": "types/catalog",
"bin": {
"catalog": "dist/cli/bin/catalog.js",
"catalog-start": "dist/cli/bin/catalog-start.js",
"catalog-build": "dist/cli/bin/catalog-build.js"
},
"scripts": {
"preversion": "make test",
"prepublishOnly": "make test && make build",
"precommit": "lint-staged",
"prettier-all": "prettier --write \"**/*.{js,ts,tsx}\""
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"args": "^3.0.8",
"autoprefixer": "^7.1.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-emotion": "^9.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.0.2",
"babel-runtime": "^6.26.0",
"babel-standalone": "^6.26.0",
"chalk": "^2.1.0",
"create-emotion": "^9.1.0",
"create-react-class": "^15.6.0",
"css-loader": "^0.28.7",
"d3-color": "^1.0.0",
"detect-port": "^1.2.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"friendly-errors-webpack-plugin": "^1.6.1",
"github-slugger": "^1.1.3",
"history": "^3.2.1",
"html-webpack-plugin": "^2.30.1",
"js-yaml": "^3.9.1",
"marked": "^0.3.12",
"postcss-loader": "^2.0.6",
"prismjs": "^1.3.0",
"prop-types": "^15.6.0",
"raf": "^3.3.2",
"ramda": "^0.24.1",
"raw-loader": "^0.5.1",
"react-dev-utils": "^4.0.1",
"react-document-title": "^2.0.3",
"react-router": "^3.2.0",
"react-router-scroll": "^0.4.2",
"sander": "^0.6.0",
"srcset": "^1.0.0",
"strip-indent": "^2.0.0",
"style-loader": "^0.18.2",
"unfetch": "^3.0.0",
"url-loader": "^0.5.9",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.9.1",
"webpack-manifest-plugin": "^1.3.1"
},
"peerDependencies": {
"react": "^15.3.2 || ^16.0.0",
"react-dom": "^15.3.2 || ^16.0.0"
},
"devDependencies": {
"@types/react": "^16.0.40",
"@types/react-dom": "^16.0.4",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-external-helpers": "^6.8.0",
"babel-plugin-react-require": "^3.0.0",
"babel-preset-env": "^1.6.0",
"eslint": "^3.19.0",
"eslint-config-interactivethings": "^3.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-react": "^5.1.1",
"flow-bin": "^0.66.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"release": "^3.0.2",
"rollup": "^0.55.5",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"rollup-watch": "^4.3.1",
"typescript": "^2.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/interactivethings/catalog.git"
},
"license": "BSD-3-Clause",
"jest": {
"roots": [
"<rootDir>/src"
]
}
}