-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
57 lines (57 loc) · 2.13 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
56
57
{
"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/gambiconf.github.io.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.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"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": "^4.0.2",
"svelte-flag-icons": "^1.0.3",
"svelte-loading-spinners": "^0.3.6",
"svelte-rough-notation": "^0.1.5",
"svelte-select": "^5.2.1"
},
"devDependencies": {
"@nubolab-ffwd/svelte-fluent": "^0.8.0",
"@playwright/test": "^1.27.1",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.5.5",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"gh-pages": "^4.0.0",
"prettier": "^3.2.4",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^4.2.12",
"svelte-check": "^3.6.9",
"svelte-eslint-parser": "^0.33.1",
"svelte-preprocess": "^5.1.3",
"tslib": "^2.6.2",
"typescript": "^5.4.4",
"vite": "^5.2.8"
},
"type": "module"
}