-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.83 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.83 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
{
"name": "image-editor",
"type": "module",
"packageManager": "bun@1.1.4",
"author": {
"name": "Shayan Zamani",
"url": "https://shayan-zamani.me/",
"email": "dev.shayan.zamani@gmail.com"
},
"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": "dev.shayan.zamani@gmail.com",
"url": "https://github.com/ShayanTheNerd/image-editor/issues"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"format": "prettier --write . '!**/*.{js,ts}' --cache",
"lint": "eslint --fix --cache --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": "bun format && bun lint && bun test:unit --run && bun run build && bun test:e2e:ci"
},
"dependencies": {
"@formkit/auto-animate": "0.8.2",
"astro": "5.1.7",
"browserslist": "4.24.4",
"context-filter-polyfill": "0.3.22",
"lightningcss": "1.29.1"
},
"devDependencies": {
"@eslint/js": "9.18.0",
"@stylistic/eslint-plugin": "2.13.0",
"eslint-plugin-import-x": "4.6.1",
"eslint-plugin-perfectionist": "4.6.0",
"cypress": "14.0.0",
"cypress-vite": "1.6.0",
"eslint": "9.18.0",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-vitest": "0.5.4",
"globals": "15.14.0",
"prettier": "3.4.2",
"prettier-plugin-astro": "0.14.1",
"simple-git-hooks": "2.11.1",
"start-server-and-test": "2.0.10",
"typescript-eslint": "8.20.0",
"vitest": "3.0.2"
}
}