-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.68 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
{
"name": "simple-todo",
"version": "1.14.0",
"description": "A Chrome extension that replaces the new tab page with a simple todo list",
"main": "index.js",
"scripts": {
"start": "vite dev",
"dev": "netlify dev",
"build": "vite build",
"preview": "vite preview",
"format": "prettier '**/*.{svelte,js,json,html,css}' --write",
"test": "vitest run",
"test:watch": "vitest",
"e2e": "cypress run --e2e",
"e2e:open": "cypress open --e2e --browser chrome",
"lhci": "lhci autorun",
"prezip": "npm run build",
"zip": "./scripts/zip.sh"
},
"keywords": [],
"author": "Arnelle Balane <arnellebalane@gmail.com>",
"license": "MIT",
"dependencies": {
"@floating-ui/dom": "^1.6.12",
"@sentry/browser": "^8.36.0",
"@sentry/node": "^8.36.0",
"axios": "^1.7.7",
"blurhash": "^2.0.5",
"cheerio": "^1.0.0-rc.10",
"dayjs": "^1.11.13",
"lodash": "^4.17.21",
"semver": "^7.6.3",
"svelte": "^5.1.9",
"svelte-dnd-action": "^0.9.52",
"svelte-portal": "^2.2.1",
"uuid": "^11.0.2"
},
"devDependencies": {
"@faker-js/faker": "^9.2.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@lhci/cli": "^0.14.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.4",
"@testing-library/user-event": "^14.5.2",
"cypress": "^13.15.1",
"cypress-vite": "^1.5.0",
"dotenv": "^16.4.5",
"jsdom": "^25.0.1",
"netlify-cli": "^17.37.2",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"vite": "^5.4.10",
"vite-jsconfig-paths": "^2.0.1",
"vitest": "^2.1.4",
"vitest-canvas-mock": "^0.3.3"
}
}