forked from Tsalmas-Anastasios/react19-wepback-spa-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.13 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 4.13 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "chirp",
"version": "1.0.0",
"description": "React SPA app template",
"main": "index.js",
"type": "module",
"scripts": {
"front:dev": "cross-env NODE_ENV=development webpack serve --mode development --open",
"front:prod": "cross-env NODE_ENV=production webpack --mode production",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"tsc": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+"
},
"keywords": [
"react",
"spa",
"template"
],
"author": "Anastasios Tsalmas",
"license": "ISC",
"bugs": {
"url": "/issues"
},
"homepage": "/#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-regular-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.1.1",
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@mantine/carousel": "^8.3.8",
"@mantine/core": "^8.3.8",
"@mantine/form": "^8.3.8",
"@mantine/hooks": "^8.3.8",
"@mantine/notifications": "^8.3.9",
"@tabler/icons-react": "^3.35.0",
"@tailwindplus/elements": "^1.0.19",
"axios": "^1.13.2",
"compression": "^1.8.1",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"embla-carousel": "^8.6.0",
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.23.24",
"lodash": "^4.17.21",
"lucide-react": "^0.554.0",
"moment-timezone": "^0.6.0",
"multer": "^2.0.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.9.4",
"uuid": "^13.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/css": "^0.12.0",
"@eslint/js": "^9.37.0",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/postcss": "^4.1.17",
"@types/compression": "^1.8.1",
"@types/node": "^24.7.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"autoprefixer": "^10.4.22",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^9.2.1",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.1.1",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-testing-library": "^7.13.1",
"eslint-plugin-unicorn": "^61.0.2",
"file-loader": "^6.2.0",
"globals": "^16.4.0",
"html-webpack-plugin": "^5.6.4",
"husky": "^9.1.7",
"null-loader": "^4.0.1",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"postcss-preset-env": "^10.4.0",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.6.2",
"style-loader": "^4.0.0",
"tailwindcss": "^4.1.17",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0",
"wait-on": "^9.0.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpack-node-externals": "^3.0.0"
},
"engines": {
"node": "^22.0.0",
"npm": "^10.0.0"
}
}