-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
91 lines (91 loc) · 3.12 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
83
84
85
86
87
88
89
90
91
{
"name": "@svg-drawing/root",
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"generate-docs"
],
"scripts": {
"build": "yarn clear; turbo run build --filter=@svg-drawing*",
"build:gh-page": "export BASE_PATH=\"/svg-drawing\"; yarn build",
"clear": "turbo run clear --filter=@svg-drawing*",
"generate:docs": "yarn build; turbo run build --filter=svg-drawing-generate-docs",
"dev": "concurrently yarn:dev:{main,tsc}",
"dev:main": "turbo run dev --parallel --no-cache",
"dev:tsc": "turbo run dev:tsc --parallel --no-cache",
"dev:test": "DEBUG=debug yarn test --watchAll",
"test": "NODE_ENV=test jest --ci --passWithNoTests",
"lint": "turbo run lint",
"fmt": "turbo run fmt",
"lint-fix": "eslint . --ext ts,tsx,js,jsx --fix",
"typecheck": "turbo run typecheck",
"versionup": "lerna version --no-push --no-git-tag-version --exact",
"release": "yarn build; lerna publish from-package",
"release:dryrun": "yarn build; lerna publish from-package --no-push --registry=http://localhost:4873/"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@lerna-lite/cli": "1.15.1",
"@rollup/plugin-commonjs": "22.0.1",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-replace": "4.0.0",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.4.3",
"@types/jest": "28.1.8",
"@types/node": "16.18.13",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"@typescript-eslint/typescript-estree": "5.8.1",
"babel-jest": "28.1.3",
"babel-plugin-annotate-pure-calls": "0.4.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"concurrently": "7.6.0",
"cross-env": "7.0.3",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.5.3",
"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",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"npm-run-all": "4.1.5",
"png.js": "0.2.1",
"prettier": "2.7.1",
"prettier-plugin-jsdoc": "0.4.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"rimraf": "3.0.2",
"rollup": "2.79.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-terser": "7.0.2",
"turbo": "1.8.3",
"typescript": "4.7.4",
"verdaccio": "5.21.2"
},
"changelog": {
"repo": "kmkzt/svg-drawing",
"labels": {
"breaking": "Breaking Change",
"enhancement": "Enhancement",
"feature": "Feature",
"dependencies": "Dependencies",
"bug": "Bug Fix",
"documentation": "Documentation",
"internal": "Internal"
},
"cacheDir": ".changelog"
}
}