-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.5 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
58
59
60
61
62
63
64
{
"name": "gather-your-party-with-svelte",
"version": "1.1.1",
"description": "Workshop to learn Svelte by creating your own character creator!",
"keywords": [
"javascript",
"typescript",
"workshop",
"frontend",
"svelte",
"sveltekit"
],
"homepage": "https://gather-your-party-with-svelte.vercel.app/",
"license": "GPL-3.0-only",
"contributors": [
"Alexander Castillo <[email protected]>",
"Dag Erik Løvgren <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/miles-no/gather-your-party-with-svelte"
},
"type": "module",
"scripts": {
"dev": "vite dev --port 3264",
"build": "vite build",
"preview": "vite preview --port 6432",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --plugin-search-dir . --check . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --plugin-search-dir . --write .",
"hint": "node hinter.js",
"clear-data": "npx -y rimraf .data",
"solve": "find ./src -name '*.SOLUTION.svelte' -exec bash -c 'mv $0 ${0/SOLUTION./}' {} ; && find ./src/routes -name 'SOLUTION.*.svelte' -exec bash -c 'mv $0 ${0/SOLUTION./}' {} ; && find ./src/routes -type d -name '*.SOLUTION' -exec bash -c 'mv \"$0\"/* ${0/.SOLUTION/}/' {} ;",
"ci:solve": "find ./src -name '*.SOLUTION.svelte' -exec bash -c 'mv $0 ${0/SOLUTION./}' {} \\; && find ./src/routes -name 'SOLUTION.*.svelte' -exec bash -c 'mv $0 ${0/SOLUTION./}' {} \\; && find ./src/routes -type d -name '*.SOLUTION' -exec bash -c 'mv \"$0\"/* ${0/.SOLUTION/}/' {} \\;",
"ci:build": "npm run ci:solve && npm run build",
"deploy": "cp -R . /tmp/gypws-deploy && cd /tmp/gypws-deploy && npm run solve && vercel --prod && rm -rf /tmp/gypws-deploy"
},
"dependencies": {
"@lukeed/uuid": "2.0.1",
"cookie": "0.5.0",
"cowsay2": "2.0.4",
"svelte-markdown": "0.2.3"
},
"devDependencies": {
"@sveltejs/adapter-auto": "2.1.0",
"@sveltejs/adapter-vercel": "^3.0.0",
"@sveltejs/kit": "1.18.0",
"@types/cookie": "0.5.1",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/parser": "5.59.7",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-svelte3": "4.0.0",
"prettier": "2.8.8",
"prettier-plugin-svelte": "2.10.0",
"svelte": "3.59.1",
"svelte-check": "3.3.2",
"svelte-preprocess": "5.0.3",
"tslib": "2.5.2",
"typescript": "5.0.4",
"vite": "4.3.8"
}
}