-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "codux-core-monorepo",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf -g \"./packages/*/dist\"",
"build": "tsc --build",
"lint": "eslint",
"pretest": "npm run lint && npm run build",
"test": "npm run test:browser",
"test:browser": "mocha-web \"packages/*/dist/test/**/*.spec.js\"",
"prettify": "prettier . --write"
},
"devDependencies": {
"@file-services/commonjs": "^9.4.1",
"@file-services/memory": "^9.4.1",
"@file-services/node": "^9.4.1",
"@file-services/path": "^9.4.1",
"@file-services/resolve": "^9.4.1",
"@playwright/browser-chromium": "^1.50.0",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.10",
"@types/node": "22",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@types/sinon": "^17.0.3",
"@wixc3/create-disposables": "^2.2.0",
"@wixc3/testing": "^17.1.1",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"esbuild": "^0.24.2",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"mocha": "^11.1.0",
"mocha-web": "^2.0.1",
"prettier": "^3.4.2",
"promise-assist": "^2.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"typescript": "~5.7.3",
"typescript-eslint": "^8.22.0"
},
"license": "MIT",
"private": true
}