This repository was archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.03 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
{
"name": "gambiconf",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite build && touch ./build/.nojekyll && echo \"gambiconf.dev\" > ./build/CNAME",
"build:prod": "export ENV=production && npm run build && cp build/index.html build/404.html",
"build:staging": "export ENV=staging && npm run build && cp build/index.html build/404.html",
"deploy:prod": "gh-pages --repo [email protected]:gambiconf/2023.git -d build -t true",
"deploy:staging": "gh-pages --repo [email protected]:gambiconf/website-staging.git -d build -t true",
"preview": "vite preview",
"test": "playwright test",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write ."
},
"dependencies": {
"@fluent/langneg": "^0.6.2",
"@fontsource/ibm-plex-sans": "^4.5.13",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"dayjs": "1.11.6",
"flag-icons": "^6.6.6",
"jsdom": "^21.1.0",
"query-string": "7.1.1",
"rough-notation": "^0.5.1",
"svelte-fa": "^3.0.3",
"svelte-flag-icons": "^0.2.1",
"svelte-loading-spinners": "0.3.4",
"svelte-rough-notation": "^0.1.4",
"svelte-select": "^5.2.1"
},
"devDependencies": {
"@nubolab-ffwd/svelte-fluent": "^0.4.3",
"@playwright/test": "^1.27.1",
"@sveltejs/adapter-static": "^2.0.1",
"@sveltejs/kit": "^1.7.2",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte3": "^4.0.0",
"gh-pages": "^4.0.0",
"prettier": "^3.2.4",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^3.55.1",
"svelte-check": "^3.0.3",
"svelte-preprocess": "^5.0.1",
"tslib": "^2.4.0",
"typescript": "~4.8.4",
"vite": "^4.1.3"
},
"type": "module"
}