forked from kmkzt/svg-drawing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.82 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
{
"name": "@svg-drawing/root",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"clean": "lerna clean; rimraf ./coverage ./packages/**/{lib,dist,node_modules}; yarn cache clean",
"build": "lerna run build",
"build:gh-page": "export BASE_PATH=\"/svg-drawing\"; yarn build",
"dev": "concurrently yarn:dev:{main,tsc}",
"dev:main": "yarn lerna run dev --concurrency 1 --parallel --stream",
"dev:tsc": "yarn lerna run dev:tsc --concurrency 1 --parallel --stream",
"dev:test": "DEBUG=debug yarn test --watchAll",
"test": "NODE_ENV=test jest --ci --passWithNoTests",
"lint": "lerna run lint",
"fmt": "lerna run fmt",
"lint-fix": "eslint . --ext ts,tsx,js,jsx --fix",
"typecheck": "lerna run typecheck",
"release": "lerna publish --exact",
"release:debug": "yarn release -- --npm-tag=debug --no-push",
"prepare": "yarn lerna bootstrap"
},
"devDependencies": {
"@babel/core": "7.16.12",
"@babel/plugin-transform-runtime": "7.16.10",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@rollup/plugin-commonjs": "21.0.2",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.1.3",
"@rollup/plugin-replace": "3.0.1",
"@types/jest": "27.4.0",
"@types/node": "16.11.26",
"@types/react": "17.0.40",
"@types/react-dom": "17.0.13",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"@typescript-eslint/typescript-estree": "5.8.1",
"babel-jest": "27.4.6",
"babel-plugin-annotate-pure-calls": "0.4.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"concurrently": "6.5.1",
"cross-env": "7.0.3",
"eslint": "8.6.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "25.3.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"jest": "27.4.7",
"lerna": "4.0.0",
"lerna-changelog": "2.2.0",
"npm-run-all": "4.1.5",
"png.js": "0.2.1",
"prettier": "2.5.1",
"prettier-plugin-jsdoc": "0.3.31",
"rimraf": "3.0.2",
"rollup": "2.62.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-terser": "7.0.2",
"typescript": "4.5.5"
},
"resolutions": {
"@typescript-eslint/typescript-estree/glob-parent": "5.1.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"
}
}