-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.11 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "myroot",
"dependencies": {
"@yaireo/tagify": "^4.27.0",
"aws-sdk": "^2.1607.0",
"devalue": "^4.3.2",
"fflate": "^0.8.2",
"fp-ts-std": "^0.19.1",
"idb-keyval": "^6.2.1",
"lz-string": "^1.5.0",
"nodemon": "^3.1.0",
"npm-watch": "^0.11.0",
"pdfjs-serverless": "^0.4.2",
"playwright": "^1.42.1",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"svelte-persisted-store": "^0.9.1",
"ts-pattern": "^5.1.0",
"uuid": "^9.0.1"
},
"scripts": {
"watch": "npm-watch buildShared",
"watchf": "npm-watch",
"dev": "npm run dev -w=supabase-sveltekit/",
"check": "svelte-check --workspace=shared/; svelte-check --workspace=supabase-sveltekit/; svelte-check --workspace=sextension/",
"format": "# find */src/**/*.ts -mtime -5s -exec npx eslint --fix {} \\; #npx prettier --write '*/src/**/*.{ts,svelte}' --config=.prettierrc.yaml",
"b": "npm run bnr -w=sextension/ #&& npm run bz -w=sextension/ && npm run build -w=supabase-sveltekit/",
"buildShared": "npm run build -w=shared/",
"test": "npx playwright test",
"icons": "svgexport icon.svg supabase-sveltekit/static/favicon.png 128:128; svgexport icon.svg sextension/public/icons/icon16.png 16:16; svgexport icon.svg sextension/public/icons/icon48.png 48:48; svgexport icon.svg sextension/public/icons/icon128.png 128:128",
"testdocker": "docker run --env-file=.testenv -e COMMIT_UUID=$COMMIT_UUID --ipc=host --init -ti -v ./tests:/usr/src/tests mcr.microsoft.com/playwright:v1.42.1 /bin/bash -c 'cd /usr/src && npm install -D @playwright/test && npx playwright test'"
},
"watch": {
"buildShared": {
"patterns": [
"shared/src/lib"
],
"extensions": [
"ts",
"js",
"svelte"
]
},
"b": {
"patterns": [
"sextension/src/",
"shared/dist"
],
"extensions": [
"ts",
"js",
"svelte"
]
}
},
"devDependencies": {
"@iconify-json/jam": "^1.1.8",
"@iconify-json/logos": "^1.1.42",
"@playwright/test": "^1.42.1",
"@stylistic/eslint-plugin": "^1.7.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/crypto-js": "^4.2.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.25",
"@types/uuid": "^9.0.8",
"@types/yaireo__tagify": "^4.24.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-unused-imports": "^3.1.0",
"immer": "^10.0.4",
"jsdom": "^24.0.0",
"postcss": "^8.4.39",
"sass": "^1.77.6",
"svgexport": "^0.4.2",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.2",
"typescript-eslint": "^7.3.1",
"vitest": "^1.4.0",
"web-ext": "^7.11.0"
},
"optionalDependencies": {
"@cloudflare/workerd-linux-64": "^1.20240405.0",
"@rollup/rollup-linux-x64-gnu": "4.6.1"
},
"version": "1.0.0",
"main": "index.js",
"directories": {
"test": "tests"
},
"author": "",
"license": "ISC",
"description": "",
"workspaces": [
"sextension",
"supabase-sveltekit",
"shared"
]
}