-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.22 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": "forget-me-not",
"description": "Fansite for Japanese guitarist, You",
"version": "2.0.0",
"author": "Sarah Norris",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mikachan/forget-me-not"
},
"scripts": {
"start": "concurrently \"npm run dev:only -- --open\" \"npm run tailwind:watch\"",
"build": "npm run tailwind:build && npm run build:only",
"dev:only": "vite dev",
"build:only": "vite build",
"preview": "vite preview",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"tailwind:watch": "NODE_ENV=development postcss src/styles/tailwind.css -o src/styles/tailwind-output.css -w",
"tailwind:build": "NODE_ENV=production postcss src/styles/tailwind.css -o src/styles/tailwind-output.css",
"test": "jest"
},
"devDependencies": {
"@beyonk/async-script-loader": "^2.3.0",
"@beyonk/svelte-google-analytics": "^2.6.4",
"@sinonjs/fake-timers": "^13.0.5",
"@testing-library/jest-dom": "^6.6.3",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte3": "^4.0.0",
"jest": "^29.7.0",
"postcss-cli": "^11.0.0",
"postcss-load-config": "^6.0.1",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.3.2",
"tailwindcss": "^3.4.15",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"type": "module",
"dependencies": {
"@fontsource/fira-mono": "^5.1.0",
"@lukeed/uuid": "^2.0.1",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/adapter-netlify": "^4.3.6",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.8.2",
"@sveltejs/vite-plugin-svelte": "^4.0.1",
"@testing-library/svelte": "^5.2.6",
"@types/jest": "^29.5.14",
"cookie": "^1.0.2",
"svelte": "^5.2.7",
"svelte-check": "^4.1.0",
"svelte-image": "^0.2.9",
"svelte-jester": "^5.0.0",
"svelte-preprocess": "^6.0.3",
"ts-jest": "^29.2.5",
"vite": "^5.4.11"
}
}