-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"name": "stylable-components-repo",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build:boards && npm run build:typescript && npm run build:stylable",
"build:boards": "node ./build-board-index.js",
"build:stylable": "stc",
"build:typescript": "tsc --build",
"clean": "rimraf -g ./packages/*/dist",
"lint": "eslint",
"pretest": "npm run lint && npm run build",
"prettify": "prettier . --write",
"test": "npm run test:spec",
"test:spec": "mocha-web \"packages/*/dist/test/**/*.spec.js\""
},
"devDependencies": {
"@playwright/browser-chromium": "^1.49.1",
"@stylable/cli": "^6.1.1",
"@stylable/esbuild": "^6.1.1",
"@testing-library/react": "^16.2.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "20",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@wixc3/board-core": "^4.6.2",
"@wixc3/react-board": "^4.6.2",
"chai": "^5.1.2",
"esbuild": "^0.24.2",
"eslint": "^9.18.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",
"glob": "^11.0.1",
"mocha": "^11.0.1",
"mocha-web": "^2.0.1",
"prettier": "^3.4.2",
"promise-assist": "^2.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"typescript": "~5.7.3",
"typescript-eslint": "^8.20.0"
},
"license": "MIT"
}