-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
42 lines (42 loc) · 1.39 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
{
"name": "sidestoreio",
"version": "1.2.0",
"description": "The sidestore website, visible at sidestore.io",
"source": "src/index.html",
"license": "MIT",
"scripts": {
"dev": "node tools/update_apps.mjs && parcel",
"prebuild": "run-script-os",
"prebuild:nix": "rm -rf dist .parcel-cache && node tools/update_apps.mjs --no-cache",
"prebuild:windows": "rd /s /q dist & rd /s /q .parcel-cache & node tools/update_apps.mjs --no-cache",
"build": "parcel build --no-source-maps --public-url ./",
"postbuild": "run-script-os",
"postbuild:nix": "cp -R src/.well-known dist/.well-known",
"postbuild:windows": "xcopy src/.well-known dist/.well-known /E/H",
"build:action": "yarn prebuild && yarn parcel build --no-source-maps --public-url ./ && yarn postbuild"
},
"devDependencies": {
"@parcel/packager-raw-url": "2.8.2",
"@parcel/resolver-glob": "^2.8.2",
"@parcel/transformer-inline-string": "2.8.2",
"@parcel/transformer-webmanifest": "2.8.2",
"node-fetch": "^3.3.1",
"parcel": "^2.8.2",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"run-script-os": "^1.1.6",
"sharp": "^0.31.1",
"tailwind-scrollbar": "^2.0.1",
"tailwindcss": "^3.2.4"
},
"engines": {
"node": ">= 18.16.0"
},
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11"
],
"dependencies": {}
}