-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.35 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
{
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.67",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"concurrently": "^8.2.0",
"eslint": "^8.44.0",
"eslint-config-standard": "latest",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"postcss": "^8.4.24",
"postcss-styled": "^0.34.0",
"postcss-syntax": "^0.36.2",
"stylelint": "^15.9.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-order": "^6.0.3",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^5.1.6",
"wrangler": "2.16.0"
},
"name": "kuba",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"build": "concurrently \"yarn build:prelude\" \"yarn build:release\"",
"build:prelude": "swc src/prelude/htmx -o assets/prelude/htmx.js -C module.type=umd",
"build:release": "swc src -d release",
"deploy": "wrangler publish",
"postinstall": "husky install",
"start": "wrangler dev"
},
"version": "1.0.0"
}