-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.56 KB
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
{
"name": "file-services",
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"clean": "rimraf -g \"./packages/*/dist\"",
"build": "node ./scripts/build.js && tsc --build",
"watch": "npm run build -- -w",
"lint": "eslint",
"pretest": "npm run lint && npm run build",
"test": "npm run test:node && npm run test:browser",
"test:node": "mocha \"./packages/*/test/*.{spec,nodespec}.ts?(x)\" --parallel",
"test:browser": "mocha-web \"packages/*/test/**/*.spec.ts?(x)\"",
"prettify": "prettier --write ."
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/browser-chromium": "^1.59.1",
"@ts-tools/esm": "^6.1.0",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "20",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/sinon": "^21.0.1",
"@types/sinon-chai": "^4.0.0",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"create-temp-directory": "^2.4.0",
"esbuild": "^0.28.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-no-only-tests": "^3.3.0",
"mocha": "12.0.0-beta-9.2",
"mocha-web": "^2.6.1",
"postcss": "^8.5.9",
"prettier": "^3.8.2",
"promise-assist": "^2.0.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"rimraf": "^6.1.3",
"sinon": "^21.1.2",
"sinon-chai": "^4.0.1",
"type-fest": "^5.5.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.1"
},
"license": "MIT",
"private": true
}