-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.21 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "image-showcase",
"version": "0.0.1",
"description": "Image gallery",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "cross-env NODE_ENV=test npm run build && cross-env NODE_ENV=test start-server-and-test start http://localhost:3000 cypress",
"e2e:headless": "cross-env NODE_ENV=test npm run build && cross-env NODE_ENV=test start-server-and-test start http://localhost:3000 cypress:headless",
"test": "jest --coverage",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ythepaut/image-showcase.git"
},
"author": "Yohann THEPAUT (ythepaut)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ythepaut/image-showcase/issues"
},
"homepage": "https://github.com/ythepaut/image-showcase#readme",
"dependencies": {
"@heroicons/react": "^2.1.5",
"bigger-picture": "^1.1.17",
"exifr": "^7.1.3",
"luxon": "^3.5.0",
"next": "^14.2.13",
"next-intl": "^3.20.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"sharp": "^0.33.5",
"zustand": "^4.5.5"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@tsconfig/next": "^2.0.3",
"@types/jest": "^29.5.12",
"@types/luxon": "^3.4.2",
"@types/node": "^22.3.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/testing-library__jest-dom": "^5.14.9",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"cypress": "^13.13.3",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^15.2.9",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"start-server-and-test": "^2.0.5",
"tailwindcss": "^3.4.10",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,css,md}": "prettier --write"
}
}