-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.19 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
{
"name": "guava",
"version": "1.0.0",
"private": true,
"repository": "https://github.com/guava-cards/guava",
"author": "Jesse Onolememen <[email protected]>",
"license": "GNU Affero General Public License v3.0",
"workspaces": [
"app",
"backend",
"desktop",
"library",
"native"
],
"scripts": {
"codegen": "yarn workspace @guava/library codegen",
"start:app": "yarn workspace @guava/app start",
"test": "jest",
"test:frontend": "jest --projects applications/frontend",
"test:backoffice": "jest --projects applications/backoffice",
"test:ts-library": "jest --projects packages/ts-library",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"coverage:open": "if test -f './coverage/index.html'; then open './coverage/index.html'; else yarn test:coverage && yarn coverage:open; fi",
"type-check": "yarn workspaces run type-check",
"lint": "yarn workspaces run lint",
"format": "yarn workspaces run format"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.6",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@emotion/jest": "^11.3.0",
"@testing-library/jest-dom": "^5.14.1",
"@types/jest": "^26.0.24",
"@types/jest-axe": "^3.5.2",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"babel-jest": "^26.6.0",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"concurrently": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-workspaces": "^0.6.2",
"jest": "26.6.0",
"jest-axe": "^5.0.1",
"jest-fetch-mock": "^3.0.3",
"jest-transform-stub": "^2.0.0",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"v8-to-istanbul": "^8.0.0"
}
}