forked from marcoshernanz/centauri
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 716 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 716 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
{
"name": "hackeurope2",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "npm run clean && node scripts/build.mjs",
"clean": "rm -rf dist",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test:demo:hn": "bash scripts/e2e_hn_demo.sh",
"test:demo:gmail": "bash scripts/e2e_gmail_demo.sh",
"test:perf": "bash scripts/perf_tune_check.sh",
"test:rehearsal": "bash scripts/rehearsal_check.sh"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/chrome": "^0.1.30",
"esbuild": "^0.25.10",
"typescript": "^5.9.2"
},
"dependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
}
}