forked from nornagon/cdda-guide
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.9 KB
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
{
"name": "svelte-app",
"version": "1.0.0",
"private": true,
"type": "module",
"license": "GPL-3.0-only",
"packageManager": "yarn@1.22.22",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"validate": "svelte-check && tsc --noEmit",
"test": "npm run test:watch -- --run",
"test:watch": "node fetch-fixtures.js && npm run lint && npm run validate && vitest --maxWorkers=4 src",
"test:latest": "node fetch-fixtures.js latest && npm run test",
"test:dump": "rm -rf _rendered && DUMP_PAGES=1 vitest --no-file-parallelism --run src/all",
"update-test-data": "node fetch-fixtures.js latest",
"transifex-push": "txjs-cli push dist",
"lint": "prettier -c .",
"lint:fix": "prettier -w .",
"precommit": "lint-staged",
"prepare": "husky install"
},
"devDependencies": {
"@fontsource/unifont": "^4.5.5",
"@sentry/browser": "^7.2.0",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@testing-library/svelte": "^5.3.1",
"@transifex/cli": "^4.2.4",
"@transifex/native": "^4.2.4",
"@tsconfig/svelte": "^5",
"@types/gettext.js": "^1.0.0",
"@types/lodash.throttle": "^4.1.7",
"@types/node": "^22",
"@types/requestidlecallback": "^0.3.4",
"ajv": "^8",
"fuzzysort": "^2.0.1",
"gettext.js": "^2.0.0",
"husky": "^7.0.4",
"jest-environment-jsdom": "^28.1.1",
"lint-staged": "^12.3.2",
"lodash": "^4.17.21",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^4.1.0",
"svelecte": "^5.3.0",
"svelte": "^5.56.3",
"svelte-check": "^4.6.0",
"svelte-preprocess": "^6.0.5",
"ts-json-schema-generator": "^1.3.0-next.3",
"tslib": "^2.3.1",
"typescript": "~5",
"undici": "^7.10.0",
"vite": "^8.0.16",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.8",
"workbox-build": "^7.4.1",
"workbox-window": "^7.4.1"
}
}