-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "typo3-render-guides",
"version": "1.0.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"lodash.debounce": "^4.0.8",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"grunt": "^1.6.1",
"grunt-cli": "^1.5.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-exec": "^3.0.0",
"grunt-sass": "^3.1.0",
"grunt-stylelint": "^0.20.1",
"sass": "^1.83.4",
"stylelint": "^16.14.1",
"vite": "^6.0.11"
},
"scripts": {
"build": "vite build && grunt build",
"debug": "grunt debug",
"watch": "vite build --watch & grunt watch"
},
"engines": {
"node": ">=18.15.0 <21.0.0"
}
}