-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "flarekit",
"version": "1.0.1",
"private": true,
"type": "module",
"bin": {
"flarekit": "./scripts/flarekit.mjs",
"e2e": "./scripts/e2e-workflow.mjs"
},
"scripts": {
"cleanup": "node ./scripts/cleanup.mjs",
"setup": "node ./scripts/setup-wrangler.mjs",
"dev": "npx flarekit dev",
"build": "npx flarekit build",
"preview": "npx flarekit --ui=stream preview",
"test": "npx flarekit test",
"test:coverage": "npx flarekit test:coverage",
"test:watch": "npx flarekit test:watch",
"test:e2e": "npx e2e --wait-for=http://localhost:8000 --wait-for=http://localhost:7001 --timeout=120",
"test:e2e:watch": "npx e2e --wait-for=http://localhost:8000 --wait-for=http://localhost:7001 --timeout=120 --watch",
"prepare": "npm exec husky || echo 'Husky not found, skipping...'",
"lint": "eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@types/eslint-config-prettier": "^6.11.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"glob": "^11.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"tsc-alias": "^1.8.10",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"wrangler": "^3.103.2"
},
"engines": {
"node": ">=18.17.1"
},
"packageManager": "npm@11.0.0",
"workspaces": [
"apps/*",
"packages/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,astro}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss,json,md}": "prettier --write"
},
"dependencies": {
"@types/node": "^22.10.7"
}
}