-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
46 lines (46 loc) · 1.54 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
{
"private": true,
"scripts": {
"init-repo": "pnpm install && pnpm build",
"clean": "pnpm -r --parallel exec rimraf dist node_modules && rimraf node_modules && rm -f pnpm-lock.yaml",
"lint": "pnpm run --parallel -r lint",
"build": "pnpm run -r build",
"watch": "pnpm run --parallel --no-bail -r build -w",
"test": "jest",
"doc": "typedoc packages/*",
"fmt": "prettier -w \"packages/*/lib/**/*.{ts,tsx}\"",
"commit-check": "pnpm clean; pnpm init-repo && pnpm lint && pnpm test",
"lerna-publish": "pnpm commit-check && lerna publish",
"postversion": "pnpm build"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "13.3.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"esbuild": "^0.14.49",
"esbuild-jest": "^0.5.0",
"eslint": "^8.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^10.1.0",
"jest": "^28.1.3",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^28.1.3",
"lerna": "^5.1.8",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"typedoc": "^0.23.8",
"typescript": "4.7.4"
},
"name": "nota"
}