-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.73 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
59
60
61
{
"name": "nothing-but-photos",
"type": "module",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest",
"e2e": "npx playwright test",
"generate-og-img": "node ./scripts/screenshot.mjs",
"og": "concurrently -k \"npm run dev\" \"npm run generate-og-img\" || exit 0",
"prepare": "husky install"
},
"lint-staged": {
"./src/assets/photos/*.jpg": [
"npm run og"
]
},
"dependencies": {
"@astrojs/react": "^3.0.0",
"@astrojs/tailwind": "^5.0.0",
"@fontsource/inter": "^5.0.8",
"@nanostores/react": "^0.7.1",
"@react-spring/web": "^9.7.3",
"@use-gesture/react": "^10.2.27",
"astro": "^3.0.8",
"astro-imagetools": "^0.9.0",
"color": "^4.2.3",
"exif-reader": "^1.2.0",
"lodash.debounce": "^4.0.8",
"lodash.kebabcase": "^4.1.1",
"nanostores": "^0.9.3",
"react-use-measure": "^2.1.1",
"sharp": "^0.32.5",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@playwright/test": "^1.37.1",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/exif-reader": "^1.0.0",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.kebabcase": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"concurrently": "^8.2.1",
"eslint": "^8.48.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jsdom-testing-mocks": "^1.10.0",
"lint-staged": "^14.0.1",
"puppeteer-core": "^21.1.1",
"vitest": "^0.34.3"
}
}