-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.93 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
{
"name": "@graphique/monorepo",
"version": "0.0.1",
"type": "module",
"description": "A container repo for all things Graphique",
"license": "MIT",
"private": true,
"workspaces": [
"./packages/*",
"./demo",
"./docs"
],
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^7.30.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": ">=9",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^8.1.2",
"lint-staged": ">=10",
"prettier": "^2.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"resize-observer-polyfill": "^1.5.1",
"ts-jest": "^29.2.5",
"ts-json-schema-generator": "^2.3.0",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"scripts": {
"lint": "npm run lint -w ./packages",
"test": "jest --config test/jest.config.ts",
"prepare": "husky",
"build": "lerna run build",
"demo": "npm run dev -w @graphique/demo",
"docs:generate": "node scripts/generateDocs",
"docs:start": "npm run dev -w @graphique/docs",
"docs:lint": "npm run lint -w @graphique/docs",
"docs:build": "npm run build -w @graphique/docs",
"typecheck:docs": "npm run typecheck:src -w @graphique/docs",
"typecheck:src": "npm run typecheck:src -w ./packages",
"typecheck:build": "npm run typecheck:build -w ./packages",
"release": "lerna changed && npm run typecheck:build && lerna publish --no-private"
}
}