-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.29 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.29 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
{
"name": "sofia",
"private": true,
"scripts": {
"lint": "eslint 'app/javascript/**/*.{js,vue}'",
"lint:styles": "stylelint 'app/**/*.s+(a|c)ss' 'app/**/*.vue' --ignore-path .gitignore",
"lint:styles:fix": "stylelint 'app/**/*.s+(a|c)ss' 'app/**/*.vue' --ignore-path .gitignore --fix",
"build": "webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch",
"build:css": "sass ./app/assets/stylesheets/application.scss:./app/assets/builds/application.css --no-source-map --load-path=node_modules",
"update:font": "ruby bin/copy_fontawesome_fonts"
},
"dependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/runtime": "^7.28.6",
"@fortawesome/fontawesome-free": "^7.2.0",
"@hotwired/turbo-rails": "^8.0.23",
"@popperjs/core": "^2.11.8",
"autosuggest-highlight": "^3.3.4",
"axios": "^1.13.4",
"babel-loader": "^10.0.0",
"babel-plugin-macros": "^3.1.0",
"bootstrap": "^5.3.8",
"caniuse-lite": "^1.0.30001774",
"core-js": "^3.48.0",
"css-loader": "^7.1.4",
"jquery": "^3.7.1",
"moment": "^2.30.1",
"popper.js": "^1.16.1",
"puppeteer": "^24.37.5",
"remove-accents": "^0.5.0",
"vue": "^2.7.16",
"vue-loader": "^15.11.1",
"vue-template-compiler": "^2.7.16",
"webfontloader": "^1.6.28",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^9.39.3",
"eslint": "^9.39.3",
"eslint-plugin-vue": "^9.33.0",
"eslint-webpack-plugin": "^5.0.2",
"globals": "^17.3.0",
"postcss": "^8.5.6",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-html": "^1.8.1",
"postcss-import": "^16.1.1",
"postcss-preset-env": "^11.2.0",
"postcss-scss": "^4.0.9",
"sass": "^1.97.3",
"stylelint": "^17.4.0",
"stylelint-config-recess-order": "^7.6.1",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-order": "^7.0.1",
"vue-eslint-parser": "^10.4.0",
"vue-style-loader": "^4.1.3"
},
"packageManager": "yarn@4.12.0"
}