-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.81 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "oddcontrast",
"title": "OddContrast",
"version": "0.0.1",
"license": "BSD-3-Clause",
"engines": {
"node": "^22"
},
"type": "module",
"scripts": {
"svelte:serve": "vite dev --host 0.0.0.0",
"svelte:build": "vite build",
"serve": "npm-run-all docs -p \"svelte:serve {@}\" watch:docs --",
"build": "run-s docs svelte:build",
"preview": "vite preview",
"check": "svelte-check",
"sync": "svelte-kit sync",
"tsc": "tsc",
"tsc:tests": "tsc -p test/tsconfig.json",
"lint": "run-s prettier sync check lint:js lint:sass tsc tsc:tests",
"lint:js": "yarn lint:js:ci --fix",
"lint:js:ci": "eslint .",
"prettier": "prettier --write .",
"prettier:ci": "prettier --check .",
"lint:sass": "yarn lint:sass:ci --fix",
"lint:ci": "run-s prettier:ci sync check lint:js:ci lint:sass:ci tsc tsc:tests",
"lint:sass:ci": "stylelint '**/*.scss'",
"docs:json": "sass -p node src/sass/json.scss static/built/json.css",
"docs:sass": "sass -p node src/sass/app.scss static/built/app.css",
"docs:compile": "sassdoc 'src/sass/**/*.scss'",
"docs": "run-s docs:sass docs:json docs:compile",
"watch:docs": "chokidar \"src/sass/**/*.scss\" \"./.sassdocrc\" \"./README.md\" -c \"yarn docs\"",
"test": "vitest",
"test:watch": "yarn test --watch"
},
"dependencies": {
"accoutrement": "^4.0.5",
"colorjs.io": "^0.5.2"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@sveltejs/adapter-auto": "^4.0.0",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.6",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/lodash": "^4.17.14",
"@types/node": "^22",
"@typescript-eslint/utils": "^8.20.0",
"@vitest/coverage-v8": "^3.0.2",
"@vitest/eslint-plugin": "^1.1.25",
"chokidar-cli": "^3.0.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-svelte": "^2.46.1",
"jsdom": "^26.0.0",
"lodash": "^4.17.21",
"mockdate": "^3.0.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"sass-embedded": "^1.83.4",
"sassdoc": "^2.7.4",
"sassdoc-theme-herman": "^6.0.2",
"stylelint": "^16.13.2",
"stylelint-config-standard-scss": "^14.0.0",
"svelte": "^5.19.0",
"svelte-check": "^4.1.4",
"svelte-eslint-parser": "^0.43.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.9",
"vitest": "^3.0.2"
},
"resolutions": {
"@types/node": "^22"
},
"packageManager": "[email protected]"
}