-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.76 KB
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
{
"name": "gap-apply-web",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"postinstall": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "yarn workspaces foreach -pv run format",
"coverage": "yarn workspaces foreach -ptv run coverage",
"build": "yarn workspaces foreach -ptv run build",
"build:image:admin": "docker build --build-arg APP_NAME=admin -t admin:latest .",
"build:image:applicant": "docker build --build-arg APP_NAME=applicant -t applicant:latest .",
"test": "jest --watch",
"test:admin": "jest --selectProjects admin --watch",
"test:applicant": "jest --selectProjects applicant --watch",
"test:gap-web-ui": "jest --selectProjects gap-web-ui --watch"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.0",
"eslint-config-next": "12.3.4",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^12.5.0",
"prettier": "2.8.8"
},
"resolutions": {
"trim": "^0.0.3",
"trim-newlines": "^3.0.0",
"glob-parent": "^6.0.1",
"postcss": "8.4.14",
"semver": "^7.5.2",
"word-wrap": "^1.2.4",
"@babel/traverse": "7.23.2",
"parse-url": "8.1.0",
"@types/react": "^18.2.74"
},
"packageManager": "yarn@3.6.0"
}