-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.17 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.17 KB
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
{
"name": "bye.link",
"author": "Aaron Noel De Leon <here@nelo.is>",
"description": "Entrust your digital assets.",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "sapper dev",
"build": "sapper build --legacy",
"export": "sapper export --legacy",
"start": "node __sapper__/build",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run",
"format": "prettier --write \"src/**/*.{svelte,html,js,css,md}\""
},
"dependencies": {
"compression": "^1.7.1",
"credit-card-type": "^8.3.0",
"md5": "^2.2.1",
"polka": "^1.0.0-next.11",
"sirv": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@fullhuman/postcss-purgecss": "^1.2.0",
"@rollup/plugin-alias": "^3.0.1",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"@sveltejs/svelte-virtual-list": "^3.0.1",
"autosize": "^4.0.2",
"blockstack": "^21.0.0",
"clipboard": "^2.0.6",
"cssnano": "^4.1.10",
"dompurify": "^2.0.8",
"dotenv": "^8.2.0",
"focus-visible": "^5.0.2",
"husky": ">=1",
"lint-staged": ">=8",
"lodash": "^4.17.15",
"marked": "^0.8.2",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.17",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.1.2",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^8.0.0",
"prettier": "^1.18.2",
"prettier-plugin-svelte": "^0.7.0",
"purgecss-from-svelte": "^2.0.2",
"radiks": "^0.2.2-beta.1",
"radiks-server": "^0.3.0-beta.1",
"rollup": "^1.12.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-svelte": "^5.0.1",
"rollup-plugin-terser": "^4.0.4",
"sapper": "^0.27.0",
"svelte": "^3.0.0",
"svelte-preprocess": "^3.0.2",
"tailwindcss": "^1.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{svelte,html,js,css,md}": [
"prettier --write",
"git add"
]
}
}