-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "image-uploader",
"version": "0.0.1",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "eslint .",
"prepare": "husky install",
"start": "next start",
"test": "node --experimental-vm-modules node_modules/.bin/jest --forceExit --detectOpenHandles",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch --detectOpenHandles"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.485.0",
"multer": "^1.4.4",
"multer-s3": "^3.0.1",
"next": "^14.0.4",
"next-router-mock": "^0.9.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.1.6",
"styled-normalize": "^8.1.0",
"usehooks-ts": "^2.9.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@next/eslint-plugin-next": "^14.0.4",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"babel-eslint": "^10.1.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"express-request-mock": "^4.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-mocks-http": "^1.14.1",
"prettier": "^3.1.1"
},
"engines": {
"node": ">= 18.19.x"
}
}