-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 736 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 736 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
{
"name": "cache2-parent",
"workspaces": [
"cache2-ts",
"viewer"
],
"type": "module",
"scripts": {
"serve": "npm -w viewer run serve",
"format": "dprint fmt",
"lint": "eslint .",
"test-all": "npm run -w cache2-ts test && npm run lint && npm run -w viewer svelte-check && dprint check"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/node": "^20.4.2",
"@types/webpack-env": "^1.18.4",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"chai": "^4.3.7",
"dprint": "^0.39.1",
"eslint": "^8.57.0",
"eslint-plugin-svelte": "^2.32.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"typescript": "5.4.2"
},
"dependencies": {
"tslib": "^2.6.1"
}
}