-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 743 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 743 Bytes
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
{
"name": "feed-reader",
"author": "Robbe Van Petegem <git@robbevp.be>",
"private": true,
"version": "0.0.1",
"type": "module",
"license": "Hippocratic-2.1",
"scripts": {
"lint:css": "stylelint **/*.css --ignore-path .gitignore",
"lint:js": "eslint ."
},
"dependencies": {
"@hotwired/turbo-rails": "^7.3.0",
"lightningcss": "^1.31.1",
"sprinkles-js": "^0.3.2",
"vite": "^7.3.1",
"vite-plugin-ruby": "^5.1.3"
},
"devDependencies": {
"@tree-company/eslint-config": "^0.5.0",
"@tree-company/stylelint-config": "^0.5.0",
"eslint": "^10.0.2",
"prettier": "^3.8.1",
"stylelint": "^17.4.0"
},
"stylelint": {
"extends": [
"@tree-company/stylelint-config"
]
}
}