-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.68 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.68 KB
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
84
85
86
87
88
89
90
91
92
93
94
{
"name": "newssystempro",
"version": "1.0.0",
"type": "module",
"description": "News management system built with Vite and React",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "concurrently \"npm run dev\" \"npm run server\"",
"server": "node server/index.cjs",
"server:watch": "nodemon server/index.cjs",
"hash-passwords": "node server/scripts/hash-passwords.cjs",
"vercel-dev": "vercel dev",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 100",
"lint:fix": "eslint src --ext js,jsx --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jye10032/NewsSystemPro.git"
},
"keywords": [
"react",
"vite",
"news",
"management",
"antd"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Jye10032/NewsSystemPro/issues"
},
"homepage": "https://github.com/Jye10032/NewsSystemPro#readme",
"dependencies": {
"@ant-design/compatible": "5.1.3",
"@ant-design/pro-layout": "7.17.16",
"antd": "5.12.8",
"axios": "^1.7.7",
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"draft-js": "^0.11.7",
"draftjs-to-html": "^0.9.1",
"echarts": "^5.4.1",
"express": "^4.22.1",
"html-to-draftjs": "^1.5.0",
"json-server": "^0.17.4",
"jsonwebtoken": "^9.0.3",
"moment": "^2.29.4",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draft-wysiwyg": "^1.15.0",
"react-redux": "^8.0.5",
"react-router": "^6.21.3",
"react-router-dom": "^6.21.3",
"react-tsparticles": "^2.8.0",
"redux": "^5.0.1",
"redux-persist": "^6.0.0",
"redux-thunk": "^3.1.0",
"tsparticles": "^2.8.0",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/lodash": "^4.17.23",
"@types/node": "^25.0.3",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.0.3",
"@vitest/coverage-v8": "^4.0.10",
"@vitest/ui": "^4.0.10",
"concurrently": "^8.2.2",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jsdom": "^27.2.0",
"sass": "^1.58.0",
"supertest": "^7.2.2",
"typescript": "^5.9.3",
"vite": "^4.4.5",
"vitest": "^4.0.10"
}
}