-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.7 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
46
47
48
49
50
51
52
53
54
{
"name": "makigas",
"version": "6.1.2",
"description": "Upstream source code for makigas.es",
"repository": "https://github.com/makigas/makigas",
"author": "Dani Rodríguez",
"license": "GPLv3",
"private": true,
"dependencies": {
"@fontsource/montserrat": "^5.0.19",
"@popperjs/core": "^2.11.8",
"@rails/ujs": "^7.1.3-4",
"bootstrap": "^5.3.0",
"bootstrap-icons": "^1.10.5",
"esbuild": "^0.23.1",
"esbuild-postcss": "^0.0.4",
"eslint-formatter-compact": "^8.40.0",
"klaro": "^0.7.21",
"normalize.css": "^8.0.1",
"postcss": "^8.4.41",
"postcss-advanced-variables": "^4.0.0",
"postcss-color-function": "^4.1.0",
"postcss-import": "^16.1.0",
"postcss-nested": "^6.2.0",
"postcss-scss": "^4.0.9",
"postcss-strip-inline-comments": "^0.1.5",
"string-width": "7.2.0",
"watcher": "^2.3.1",
"youtube-player": "^5.6.0"
},
"devDependencies": {
"@types/rails__ujs": "^6.0.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"stylelint": "^16.8.2",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.2",
"stylelint-scss": "^6.5.0"
},
"scripts": {
"build": "node esbuild.mjs",
"build:watch": "node esbuild.mjs --watch",
"clean": "rimraf app/assets/builds/*",
"fmt:check": "prettier --check app/javascript",
"fmt": "prettier --write app/javascript",
"lint": "$npm_execpath run lint:js && $npm_execpath run lint:css",
"lint:js": "eslint app/javascript/**/*.js",
"lint:css": "stylelint app/javascript/**/*.scss"
}
}