forked from Retrospring/retrospring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.34 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
{
"scripts": {
"lint": "yarn run eslint --ext .ts app/javascript",
"lint:fix": "yarn run eslint --ext .ts app/javascript --fix",
"lint:css": "yarn run stylelint \"app/assets/stylesheets/**/*.scss\"",
"build": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds --public-path=assets",
"build:css": "sass ./app/assets/stylesheets/application.sass.scss:./app/assets/builds/application.css --no-source-map --load-path=node_modules"
},
"dependencies": {
"@fontsource/lexend": "^4.5.15",
"@fortawesome/fontawesome-free": "^6.4.2",
"@github/hotkey": "^2.0.1",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^7.3.0",
"@melloware/coloris": "^0.21.1",
"@popperjs/core": "^2.11",
"@rails/request.js": "^0.0.8",
"bootstrap": "^5.2",
"buffer": "^6.0.3",
"cheet.js": "^0.3.3",
"croppr": "^2.3.1",
"i18n-js": "^4.0",
"js-cookie": "2.2.1",
"sass": "^1.66.1",
"sweetalert": "1.1.3",
"toastify-js": "^1.12.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"esbuild": "^0.17.0",
"eslint": "^7.16.0",
"eslint-plugin-import": "^2.28.1",
"stylelint": "^15.10.3",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-scss": "^5.1.0"
}
}