-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "file-services",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf -g \"./packages/*/dist\"",
"build": "node ./scripts/build.mjs && 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": {
"@playwright/browser-chromium": "^1.50.0",
"@ts-tools/node": "^6.1.0",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.10",
"@types/node": "20",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"create-temp-directory": "^2.4.0",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"mocha": "^11.1.0",
"mocha-web": "^2.0.1",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"promise-assist": "^2.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"sass": "^1.83.4",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"type-fest": "^4.33.0",
"typescript": "~5.7.3",
"typescript-eslint": "^8.21.0"
},
"engines": {
"npm": ">=8"
},
"license": "MIT",
"private": true
}