-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.3 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
{
"name": "rdpc-ui",
"version": "0.12.0",
"private": true,
"scripts": {
"dev": "npm run clean && next dev",
"build": "npm run clean && NEXT_IS_BUILDING=true next build",
"serve": "npm run clean && next build && next start",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "echo 'Add tests please :)'",
"gql:compile": "graphql-codegen",
"gql:watch": "graphql-codegen -w",
"type-check": "tsc -p ./tsconfig.json",
"clean": "rimraf .next"
},
"dependencies": {
"@apollo/client": "^3.8.1",
"@hookform/resolvers": "^3.1.1",
"@icgc-argo/ego-token-utils": "^8.4.1",
"@icgc-argo/uikit": "^3.0.1",
"@types/url-join": "^4.0.1",
"apollo-upload-client": "^17.0.0",
"browser-fs-access": "^0.35.0",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"file-saver": "^2.0.5",
"graphql": "^16.8.0",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"next": "^14.2.2",
"pluralize": "^8.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-google-recaptcha": "^3.1.0",
"react-grid-system": "^8.1.9",
"react-hook-form": "^7.45.1",
"react-query": "^3.39.3",
"react-transition-group": "^4.4.5",
"url-join": "^5.0.0",
"zod": "^3.21.4"
},
"peerDependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@parcel/watcher": "^2.2.0",
"@playwright/test": "^1.41.2",
"@types/apollo-upload-client": "^17.0.2",
"@types/js-cookie": "^3.0.3",
"@types/lodash": "^4.14.195",
"@types/node": "20.2.3",
"@types/pluralize": "^0.0.30",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"@types/react-google-recaptcha": "^2.1.5",
"@types/react-transition-group": "^4.4.6",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-next": "13.4.3",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.2",
"rimraf": "^5.0.5",
"typescript": "^5.1.6"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}