-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.98 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
65
66
67
68
69
{
"name": "rust-jungle",
"description": "Rust Jungle is a learning platform to learn the Rust programming language.",
"url": "https://rust-jungle.vercel.app",
"keywords": [
"rust",
"programming",
"learning"
],
"license": "MIT",
"version": "0.3.0",
"repository": {
"type": "git",
"url": "https://github.com/Zerotask/rust-jungle"
},
"type": "module",
"scripts": {
"predev": "npm run generate",
"dev": "svelte-kit dev --port 15007",
"prebuild": "npm run generate",
"build": "svelte-kit build",
"preview": "svelte-kit preview --port 15007",
"lint": "prettier --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"lint:fix": "prettier --write --plugin-search-dir=. . && eslint --fix --ignore-path .gitignore .",
"check": "svelte-check",
"deploy": "vercel",
"generate": "node ./generator.js"
},
"dependencies": {
"@fontsource/alata": "^4.5.0",
"@fontsource/alfa-slab-one": "^4.5.0",
"@lukeed/uuid": "^2.0.0",
"@sveltejs/kit": "next",
"cookie": "^0.4.1",
"svelte": "^3.39.0",
"sweetalert2": "^11.0.19",
"workbox-background-sync": "^6.1.5",
"workbox-cacheable-response": "^6.1.5",
"workbox-expiration": "^6.1.5",
"workbox-google-analytics": "^6.1.5",
"workbox-precaching": "^6.1.5",
"workbox-routing": "^6.1.5",
"workbox-strategies": "^6.1.5"
},
"devDependencies": {
"@sveltejs/adapter-vercel": "next",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"autoprefixer": "^10.2.5",
"cssnano": "^5.0.7",
"dotenv": "^10.0.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-svelte3": "^3.2.1",
"fast-glob": "^3.2.7",
"node-html-better-parser": "^1.2.0",
"postcss": "^8.3.6",
"postcss-load-config": "^3.0.1",
"prettier": "~2.3.2",
"prettier-plugin-svelte": "^2.3.1",
"svelte-check": "^2.2.3",
"svelte-preprocess": "^4.7.1",
"tslib": "^2.3.0",
"typescript": "^4.3.5",
"vercel": "^23.0.1",
"vite-imagetools": "^3.6.7",
"xmlbuilder2": "^3.0.1"
}
}