-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "tidy5e-sheet",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"prepare-dev": "node prepare-dist-for-dev.js",
"dev": "npm run prepare-dev && vite",
"build": "vite build",
"build-watch": "vite build --watch",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check-watch": "svelte-check --watch --tsconfig ./tsconfig.json",
"refresh-docs": "typedoc --options ./typedoc.json",
"link-create": "node symlink-module-build-dir.js",
"link-remove": "node symlink-module-build-dir.js --clean",
"lint-tests": "eslint tests/**/*.ts",
"lint-tests-fix": "eslint tests/**/*.ts --fix",
"e2e": "npm run lint-tests && playwright test"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@playwright/test": "^1.47.2",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"dotenv": "^16.4.5",
"eslint": "^9.11.1",
"eslint-plugin-playwright": "^1.6.2",
"fs-extra": "^11.2.0",
"sass": "^1.79.3",
"svelte": "^4.2.19",
"svelte-awesome-color-picker": "^3.1.4",
"svelte-check": "^4.0.3",
"terser": "^5.34.0",
"tslib": "^2.7.0",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.8",
"yargs": "^17.7.2"
},
"dependencies": {
"colord": "^2.9.3"
}
}