-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 828 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 828 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
{
"name": "maas-webapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --check './{,**/}*.{css,ts,js,mts,mjs,json,yaml,yml}' '!**/package-lock.json'",
"prettier:fix": "prettier --write './{,**/}*.{css,ts,js,mts,mjs,json,yaml,yml}' '!**/package-lock.json'",
"lint": "eslint ."
},
"author": "",
"license": "",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@hotwired/stimulus": "^3.2.2",
"@tailwindcss/cli": "^4.1.4",
"@tailwindcss/forms": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"eslint": "^9.16.0",
"prettier": "^3.4.2",
"tailwindcss": "^4.1.4"
}
}