-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.82 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": "image-editor",
"type": "module",
"packageManager": "[email protected]",
"author": {
"name": "Shayan Zamani",
"url": "https://shayan-zamani.me/",
"email": "[email protected]"
},
"license": "BSD 3 Clause License",
"homepage": "https://github.com/ShayanTheNerd/image-editor",
"readme": "https://github.com/ShayanTheNerd/image-editor#readme",
"repository": {
"type": "git",
"directory": "main",
"url": "https://github.com/ShayanTheNerd/image-editor"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/ShayanTheNerd/image-editor/issues"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"format": "prettier --write '**/*.{json,md,css,astro}' --cache",
"lint": "eslint --fix --ignore-pattern='.vscode/*.json' --cache-location='/node_modules/.eslintcache/",
"test:unit": "vitest",
"test:e2e": "start-server-and-test dev http://127.0.0.1:3000/image-editor 'cypress open'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:3000/image-editor 'cypress run'"
},
"simple-git-hooks": {
"pre-commit": "pnpm format && pnpm lint && pnpm test:unit --run && pnpm build && pnpm test:e2e:ci"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.1",
"astro": "^4.4.15",
"browserslist": "^4.23.0",
"context-filter-polyfill": "^0.3.13",
"lightningcss": "^1.24.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.23.2",
"@eslint/js": "^9.8.0",
"@stylistic/eslint-plugin": "^2.3.0",
"@types/eslint__js": "^8.42.3",
"cypress": "^13.13.3",
"cypress-vite": "^1.5.0",
"eslint": "^9.8.0",
"eslint-plugin-cypress": "^3.4.0",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.14.0",
"simple-git-hooks": "^2.11.1",
"start-server-and-test": "^2.0.5",
"vitest": "^2.0.4"
}
}