-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 1.92 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "pixel-sort",
"version": "1.0.0",
"private": true,
"description": "Liven your photos with a glitch effect",
"keywords": [
"pixel",
"sort",
"glitch",
"image"
],
"homepage": "https://github.com/evelynhathaway/pixel-sort#readme",
"bugs": {
"url": "https://github.com/evelynhathaway/pixel-sort/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evelynhathaway/pixel-sort.git"
},
"license": "MIT",
"author": "Evelyn Hathaway <npm@evelyn.dev> (https://evelyn.dev)",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "eslint ./",
"start": "next start"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": "./node_modules/conventional-changelog-evelyn/commitlint.config.js"
},
"lint-staged": {
"**/package.json": "sort-package-json",
"./": "eslint --fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"clsx": "^2.0.0",
"next": "13.4.19",
"node-vibrant": "^3.1.6",
"react": "^18.2.0",
"react-aria": "^3.27.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-quick-pinch-zoom": "^4.9.0"
},
"devDependencies": {
"@sass-fairy/url": "^1.0.1",
"@types/node": "^20.5.9",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"commitlint": "^17.7.1",
"conventional-changelog-evelyn": "^1.3.1",
"eslint": "^8.48.0",
"eslint-config-next": "13.4.19",
"eslint-plugin-evelyn": "^9.0.0",
"eslint-plugin-unicorn": "^47.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"sass": "^1.66.1",
"sort-package-json": "^2.5.1",
"typescript": "^5.2.2",
"worker-loader": "^3.0.8"
}
}