forked from textadventures/squiffy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 742 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 742 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
32
33
{
"name": "squiffy",
"private": true,
"type": "module",
"workspaces": [
"compiler",
"editor",
"cli",
"packager",
"runtime",
"site",
"types"
],
"scripts": {
"build": "lerna run build",
"test": "lerna run test",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:all": "npm run test && npm run test:e2e",
"version": "lerna version",
"publish": "lerna publish from-package --no-private",
"lint": "eslint ."
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.49.1",
"eslint": "^9.39.2",
"lerna": "^9.0.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0"
}
}