This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
105 lines (105 loc) · 3.52 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
{
"name": "blockstack-www",
"description": "Blockstack is building an ecosystem that gives your users control over their fundamental digital rights: Identity, data-ownership, privacy, and security. Join us and help build the new internet.",
"version": "1.0.0",
"author": "Blockstack Team",
"bugs": {
"url": "https://github.com/blockstack/blockstack.org/issues"
},
"dependencies": {
"@mdx-js/mdx": "^0.20.3",
"@mdx-js/tag": "^0.20.3",
"@rehooks/component-size": "^1.0.3",
"@styled-system/css": "^5.0.23",
"@use-hook/use-cookie": "^0.1.4",
"blockstack-ui": "^0.0.78",
"codemirror": "^5.48.4",
"cross-fetch": "^3.0.4",
"dayjs": "^1.8.23",
"highlight.js": "^9.18.1",
"intersection-observer": "^0.7.0",
"keyboardjs": "^2.5.1",
"lodash-es": "^4.17.15",
"lodash.clamp": "^4.0.3",
"lodash.template": "^4.5.0",
"mdi-react": "^6.6.0",
"next": "^9.3.4",
"next-optimized-images": "^2.5.7",
"polished": "^3.5.1",
"react": "^16.13.1",
"react-codemirror2": "^6.0.0",
"react-dom": "^16.13.1",
"react-headroom": "^2.2.8",
"react-highlight.js": "^1.0.7",
"react-intersection-observer": "^8.24.2",
"react-player": "^1.12.0",
"react-spring": "^9.0.0-beta.6",
"react-use": "^8.3.1",
"react-use-cookie": "^1.0.2",
"react-use-gesture": "^5.2.4",
"rebound": "^0.1.0",
"scrollmonitor": "^1.2.4",
"serialize-javascript": "^2.1.2",
"set-value": "^3.0.1",
"styled-components": "^4.3.2",
"textversionjs": "^1.1.3",
"use-events": "^1.4.1",
"use-is-in-viewport": "^1.0.7",
"use-media": "^1.4.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/runtime": "7.9.2",
"@zeit/next-mdx": "^1.2.0",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.7",
"core-js": "^2.6.5",
"cpx": "^1.5.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-react": "^7.19.0",
"fast-async": "^6.3.8",
"file-loader": "^3.0.1",
"img-loader": "^3.0.1",
"jimp": "^0.6.4",
"merge-files-webpack-plugin": "^1.1.2",
"next-compose-plugins": "^2.2.0",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"responsive-loader": "^1.2.0",
"sharp": "^0.23.1",
"svg-inline-loader": "^0.8.2",
"svg-loader": "^0.0.2",
"svg-sprite-loader": "^4.2.2",
"webp-loader": "^0.4.0",
"webpack-bundle-analyzer": "^3.6.1"
},
"homepage": "https://github.com/blockstack/blockstack.org#readme",
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/blockstack/blockstack.org"
},
"scripts": {
"build": "NODE_ENV=production next build",
"build:analyze": "BUNDLE_ANALYZE=both yarn build",
"dev": "NODE_ENV=development next dev",
"export": "NODE_ENV=production next export",
"format": "prettier --write ./**/*.{js,md} && echo -e '\\033[0;32m'💅 Just use prettier'\\033[0m'",
"netlify": "npm run build && npm run export",
"postexport": "npm run sitemap",
"prod": "npm run build && npm run export",
"sitemap": "node build-sitemap.js",
"start": "NODE_ENV=production node server.js",
"test": "eslint src/**/*.js"
}
}