forked from cssstats/cssstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
{
"private": true,
"name": "cssstats",
"license": "MIT",
"version": "2.0.0",
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"favicon": "yarn favicon:16 && yarn favicon:32 && yarn favicon:64",
"favicon:16": "repng src/components/logo.js -w 16 -h 16 -d src/images -f favicon-16.png -p '{\"size\": 16}'",
"favicon:32": "repng src/components/logo.js -w 32 -h 32 -d src/images -f favicon-32.png -p '{\"size\": 32}'",
"favicon:64": "repng src/components/logo.js -w 64 -h 64 -d src/images -f favicon-64.png -p '{\"size\": 64}'",
"format": "prettier --write {api,packages,src}/**/**.{js,json,md,mdx}",
"now-build": "yarn build",
"test": "lerna run test",
"pretest": "lerna bootstrap",
"publish": "lerna publish"
},
"workspaces": [
"api/*",
"packages/*"
],
"dependencies": {
"@emotion/core": "^10.0.14",
"@emotion/styled": "^10.0.14",
"gatsby": "^2.13.41",
"gatsby-plugin-fathom": "^1.1.0",
"gatsby-plugin-theme-ui": "^0.2.18",
"gatsby-source-filesystem": "^2.1.6",
"gatsby-theme-documentation": "^0.0.22",
"get-query-param": "^2.0.3",
"humanize-plus": "^1.8.2",
"is-url": "^1.2.4",
"isomorphic-unfetch": "^3.0.0",
"lerna": "^3.16.4",
"lodash.uniq": "^4.5.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-feather": "^2.0.3",
"repng": "^3.2.0",
"styled-system": "^5.0.16",
"theme-ui": "^0.2.18",
"titleize": "^2.1.0",
"victory": "^32.3.3"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}