-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 2.06 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "engine",
"private": true,
"type": "module",
"workspaces": [
"examples/*",
"packages/*",
"test-fixtures/*",
"test-fixtures/workspace/packages/*"
],
"scripts": {
"clean": "rimraf -g \"./packages/*/dist\" \"./examples/*/dist\" \"./test-fixtures/*/dist\" \"./test-fixtures/workspace/packages/*/dist\"",
"build": "npm run build:typescript && npm run build:dashboard",
"build:typescript": "tsc --build",
"build:dashboard": "node build-dashboard.mjs",
"lint": "eslint",
"prestart": "npm run build",
"start": "engine --dev",
"pretest": "npm run lint && npm run build",
"test": "npm run test:unit",
"test:unit": "npm test -ws --if-present",
"prettify": "prettier . --write"
},
"devDependencies": {
"@file-services/memory": "^9.4.1",
"@file-services/types": "^9.4.1",
"@playwright/browser-chromium": "^1.49.1",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/minimist": "^1.2.5",
"@types/mocha": "^10.0.10",
"@types/node": "20",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^4.0.0",
"@types/yargs": "^17.0.33",
"@wixc3/create-disposables": "^2.2.0",
"@wixc3/testing": "^18.0.0",
"@wixc3/testing-node": "^18.0.0",
"@wixc3/wait-for-call": "^18.0.0",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"create-temp-directory": "^2.4.0",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"mocha": "^11.0.1",
"mocha-web": "^2.0.1",
"playwright-core": "^1.49.1",
"prettier": "^3.4.2",
"promise-assist": "^2.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.19.0"
},
"license": "MIT"
}