-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "howmanyconfs.com",
"version": "1.1.0",
"description": "How many confirmations are equivalent to 6 Bitcoin confirmations?",
"main": "index.html",
"repository": "lukechilds/howmanyconfs.com",
"author": "Luke Childs <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "parcel index.html",
"build": "parcel build index.html",
"build:dev": "NODE_ENV=development npm run build",
"test": "xo && npm run build:dev"
},
"xo": {
"env": "browser"
},
"prerender": {
"rendererConfig": {
"renderAfterDocumentEvent": "prerender-trigger"
}
},
"dependencies": {
"@vercel/analytics": "^0.1.8",
"coinlist": "^3.1.2",
"cryptocurrency-icons": "^0.18.1",
"escape-html": "^1.0.3",
"isomorphic-fetch": "^2.2.1",
"modern-normalize": "^0.5.0",
"parcel-plugin-ogimage": "^1.1.0",
"pretty-ms": "^4.0.0"
},
"devDependencies": {
"parcel-bundler": "^1.12.3",
"parcel-plugin-prerender": "^1.4.1",
"xo": "^0.24.0"
}
}