-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.61 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "engine",
"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:stylable && npm run build:dashboard",
"build:typescript": "tsc --build",
"build:stylable": "stc",
"build:dashboard": "node build-dashboard.mjs",
"lint": "eslint",
"prestart": "npm run build",
"start": "engineer start",
"pretest": "npm run lint && npm run build",
"test": "npm run test:unit",
"test:unit": "npm test -ws --if-present",
"prettify": "npx prettier . --write"
},
"devDependencies": {
"@file-services/memory": "^9.4.1",
"@file-services/types": "^9.4.1",
"@playwright/browser-chromium": "^1.48.2",
"@stylable/cli": "^6.1.1",
"@stylable/webpack-plugin": "^6.1.1",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.8",
"@types/cors": "^2.8.17",
"@types/d3-hierarchy": "^3.1.7",
"@types/d3-selection": "^3.0.11",
"@types/d3-shape": "^3.1.6",
"@types/body-parser": "^1.19.5",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/html-minifier-terser": "^7.0.2",
"@types/is-ci": "^3.0.4",
"@types/minimist": "^1.2.5",
"@types/mocha": "^10.0.9",
"@types/node": "20",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/semver": "^7.5.8",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@types/yargs": "^17.0.33",
"@wixc3/create-disposables": "^2.2.0",
"@wixc3/docs": "^17.1.1",
"@wixc3/testing": "^17.1.1",
"@wixc3/testing-node": "^17.1.1",
"@wixc3/wait-for-call": "^17.1.1",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"create-temp-directory": "^2.4.0",
"esbuild": "^0.24.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"html-webpack-plugin": "^5.6.3",
"mocha": "^10.8.2",
"mocha-play": "^7.0.5",
"playwright-core": "^1.48.2",
"prettier": "^3.3.3",
"promise-assist": "^2.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"source-map-loader": "^5.0.0",
"typescript": "~5.6.3",
"typescript-eslint": "^8.13.0",
"webpack": "^5.96.1"
},
"license": "MIT",
"private": true
}