-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
32 lines (32 loc) · 967 Bytes
/
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
{
"engines": {
"node": ">=20.0.0 <=21.7.1"
},
"dependencies": {
"@gouvfr/dsfr": "^1.10.0",
"@hotwired/turbo-rails": "^8.0.4",
"@rails/ujs": "^6.0.3-4",
"accessible-autocomplete": "^2.0.3",
"jquery": "^3.5.1",
"mjml": "^4.15.3",
"remixicon": "^4.2.0",
"slim-select": "^2.9.2",
"stimulus": "^2.0.0",
"whatwg-fetch": "^3.5.0"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.24.3",
"babel-loader": "^9.1.3",
"eslint": "^7.14.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"lint:js": "eslint ./app/front/javascripts ./app/assets/javascripts ./config/webpack",
"dev": "webpack serve --config ./config/webpack/webpack.config.js --mode development --progress",
"build": "webpack --config ./config/webpack/webpack.config.js --mode production --progress"
}
}