-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.69 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
{
"name": "@patik/dof",
"version": "2.1.2",
"private": true,
"workspaces": [
"package",
"app"
],
"scripts": {
"dev": "yarn --cwd package tsc && yarn --cwd app dev",
"start": "yarn --cwd app start",
"start:ci": "yarn build && yarn --cwd app start",
"build": "yarn --cwd package lint && yarn --cwd package tsc && yarn --cwd app build",
"deploy": "yarn --cwd package lint && yarn --cwd package tsc && IS_DEPLOYMENT=true yarn --cwd app build",
"clean": "git clean -fdx",
"cover": "yarn --cwd package test --collectCoverage",
"lint": "yarn workspaces run lint",
"preversion": "yarn workspaces run preversion",
"postversion": "git push && git push --tags",
"test": "yarn workspaces run test",
"cypress:open": "cypress open --project ./app",
"postinstall": "patch-package"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.11",
"@types/node": "20.12.7",
"@types/react": "18.3.0",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.18.1",
"cypress": "^13.6.2",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-prune": "^0.10.3",
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/patik/dof.git"
},
"dependencies": {
"patch-package": "^8.0.0"
}
}