forked from SkipLabs/skip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 870 Bytes
/
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
{
"workspaces": [
"eslint-config",
"tsconfig",
"skiplang/prelude/ts",
"skiplang/skdate/ts",
"skiplang/skjson/ts",
"skipruntime-ts/native",
"skipruntime-ts/api",
"skipruntime-ts/helpers",
"skipruntime-ts/tests",
"skipruntime-ts/wasm",
"skipruntime-ts/server",
"skipruntime-ts/examples",
"sql/ts",
"sql/ts/tests",
"examples/hackernews/reactive_service"
],
"devDependencies": {
"@types/node": "^22.6.0",
"@skiplabs/eslint-config": "^0.0.1",
"@skiplabs/tsconfig": "^0.0.1",
"eslint": "9.14.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present"
}
}