-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.05 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
{
"name": "fileup-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 5100",
"build": "next build",
"start": "next start -p 5100",
"pm2-start": "npx pm2 reload ecosystem.config.js --env production",
"test": "jest --clearCache && jest -u",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint",
"find:unused": "next-unused"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.5",
"@tanstack/react-query": "^4.16.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"@types/styled-components": "^5.1.26",
"axios": "^0.24.0",
"axios-extensions": "^3.1.3",
"cookies-next": "^2.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jest": "^29.3.1",
"next": "12.1.6",
"next-compose-plugins": "^2.2.1",
"next-cookies": "^2.0.3",
"next-redux-wrapper": "^7.0.5",
"next-unused": "^0.0.6",
"pm2": "^5.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"react-loader-spinner": "^5.3.4",
"react-redux": "^8.0.2",
"sharp": "^0.31.0",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.0.4",
"@swc/core": "^1.3.18",
"@swc/jest": "^0.2.23",
"@types/node": "18.7.17",
"@types/react": "18.0.19",
"@types/react-dom": "18.0.6",
"eslint": "8.23.1",
"eslint-config-next": "12.3.0",
"jest-environment-jsdom": "^29.3.1",
"ts-node": "^10.9.1",
"typescript": "4.8.3"
},
"next-unused": {
"alias": {},
"debug": true,
"include": [
"src/assets",
"src/components",
"src/constants",
"src/enum",
"src/hoc",
"src/hooks",
"src/lib",
"src/repository",
"src/stores",
"src/styles",
"src/types",
"src/util",
"src/validation"
],
"exclude": [],
"entrypoints": [
"src/pages"
]
}
}