-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1020 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 1020 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": "etfs-app-starter-kit",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"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",
"@testing-library/dom": "^10.4.0",
"@types/node": "^25.1.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"eslint": "^9.16.0",
"jsdom": "^27.4.0",
"prettier": "^3.4.2",
"tailwindcss": "^4.1.4",
"vitest": "^4.0.18"
}
}