-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.17 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
{
"private": true,
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"lint": "yarn run eslint assets/src",
"format": "prettier assets/src/*.ts --write",
"check-lint": "yarn lint --no-fix",
"check-format": "yarn format --no-write --check",
"check-type": "tsc --noEmit --skipLibCheck"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.15.8",
"@babel/preset-typescript": "^7.15.8",
"@eslint/js": "^9.16.0",
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^10.0.0",
"@tailwindcss/typography": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.13.0",
"prettier": "^3.4.1",
"rollup": "^3.7.0",
"rollup-plugin-sass": "^1.14.0",
"sass": "^1.75.0",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"typescript-eslint": "^8.17.0"
},
"peerDependencies": {
"@hotwired/stimulus": "^3.2.2"
}
}