-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "utakata",
"private": true,
"engines": {
"node": "22.x"
},
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@hotwired/turbo-rails": "^8.0.12",
"@popperjs/core": "^2.11.8",
"babel-loader": "^9.2.1",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"compression-webpack-plugin": "^11.1.0",
"css-loader": "^7.1.2",
"mini-css-extract-plugin": "^2.9.2",
"purgecss-webpack-plugin": "^6.0.0",
"sass": "^1.80.6",
"sass-loader": "^16.0.3",
"striptags": "^3.2.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-remove-empty-scripts": "^1.0.4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.45.0",
"prettier": "^3.3.3"
},
"scripts": {
"build": "webpack --config ./config/webpack/webpack.config.js",
"build:watch": "webpack --config ./config/webpack/webpack.config.js --watch",
"lint": "eslint --max-warnings 0 app config"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}