-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 853 Bytes
/
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
{
"name": "toplist",
"version": "0.0.0",
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"js-levenshtein": "^1.1.6",
"linkify-string": "^4.1.3",
"linkifyjs": "^4.1.3",
"lit-html": "^3.1.4",
"qrcode-svg": "^1.1.0",
"unique-names-generator": "^4.7.1"
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.12.0",
"@parcel/transformer-webmanifest": "^2.12.0",
"pre-commit": "^1.2.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"fmt-check": "npx prettier -c **.{mjs,html,css,yml}",
"fmt": "npm run fmt-check -- -w",
"build": "npx parcel build --public-url /toplist",
"serve": "npx parcel serve"
},
"targets": {
"default": {
"source": [
"./index.html"
]
}
},
"pre-commit": [
"fmt-check"
]
}