-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.91 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
{
"private": true,
"version": "2.0.17",
"scripts": {
"build": "yarn workspaces foreach --all -pt run build",
"test": "yarn workspaces foreach --all -pt run test",
"pub": "yarn workspaces foreach --all -pt run pub",
"pub1": "yarn workspaces foreach --all -pt run pub && yarn run tag",
"inc": "echo yarn workspaces foreach --all -pt run inc",
"inc-version": "yarn workspaces foreach --all -pt version patch",
"get-version": "node -p \"require('./packages/jewishDatesCore/package.json').version\"",
"tag": "echo git tag v1.2.1",
"clean": "rm -rf node_modules",
"g:start": "cd $INIT_CWD && esr ../../config/start.ts",
"g:start-app": "cd $INIT_CWD && esr ../../config/startApp.ts",
"g:dev": "cd $INIT_CWD && esr ../../config/build.ts --watch",
"g:build": "cd $INIT_CWD && yarn g:clean && esr ../../config/build.ts",
"g:build-app": "cd $INIT_CWD && yarn g:clean && esr ../../config/buildApp.ts",
"g:test": "cd $INIT_CWD && vitest --config ./config/vitest.config.ts --coverage",
"g:clean": "cd $INIT_CWD && rm -rf dist"
},
"workspaces": [
"packages/jewishDatesCore",
"packages/reactJewishDatePicker",
"packages/example"
],
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^20.16.10",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "2.1.1",
"esbuild": "^0.24.0",
"esbuild-node-externals": "^1.15.0",
"esbuild-runner": "^2.2.2",
"esprima": "^4.0.1",
"has-flag": "5.0.1",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"tsc-prog": "^2.3.0",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vitest": "^2.1.1"
}
}