-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 3.48 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently -r \"next dev\" \"nodemon\"",
"build": "next build",
"start": "next start",
"test:ci": "yarn generate:ci && yarn lint",
"generate:ci": "node scripts/fixSchema.js && graphql-codegen",
"generate": "node scripts/fixSchema.js && graphql-codegen --watch",
"storybook": "concurrently -r \"MOCKED_SERVER_PORT=1338 nodemon\" \"start-storybook -s ./public -p 6006\" \"yarn generate\"",
"lint": "tsc --noEmit && prettier --write \"{components,pages}/**\" && eslint \"{components,pages}/**\"",
"refresh-schema": "get-graphql-schema -h X-Parse-Application-Id=dev -h X-Parse-Master-Key=dev http://localhost:1337/graphql > graphql/cloud-schema.graphql && node scripts/fixSchema.js",
"scan": "sonar-scanner",
"deploy-sonarqube": "docker run -d --name sonarqube -p 9000:9000 sonarqube",
"sonarqube": "docker start sonarqube"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@apollo/client": "^3.2.9",
"@apollo/react-hooks": "^4.0.0",
"@material-ui/core": "^4.11.1",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@react-hook/debounce": "^3.0.0",
"apollo-link": "^1.2.14",
"apollo-link-batch-http": "^1.2.14",
"apollo-upload-client": "^14.1.3",
"formik": "^2.2.5",
"graphql": "^15.4.0",
"graphql-tag": "^2.11.0",
"graphql-tools": "^7.0.2",
"js-cookie": "^2.2.1",
"moment": "^2.29.1",
"next": "10.0.3",
"next-cookies": "^2.0.3",
"node-fetch": "^2.6.1",
"notistack": "^1.0.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-intl": "^5.10.6",
"yup": "^0.31.0"
},
"devDependencies": {
"@apollo/react-testing": "^4.0.0",
"@babel/core": "^7.12.9",
"@graphql-codegen/cli": "^1.19.3",
"@graphql-codegen/typescript": "^1.18.1",
"@graphql-codegen/typescript-operations": "^1.17.12",
"@graphql-codegen/typescript-react-apollo": "^2.2.1",
"@graphql-tools/mock": "^7.0.0",
"@graphql-tools/schema": "^7.1.0",
"@storybook/addon-backgrounds": "^6.1.8",
"@storybook/addon-viewport": "^6.1.8",
"@storybook/addons": "^6.1.8",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.1.8",
"@storybook/theming": "^6.1.8",
"@types/faker": "^5.1.4",
"@types/js-cookie": "^2.2.6",
"@types/lru-cache": "^5.1.0",
"@types/node": "^14.14.10",
"@types/node-fetch": "^2.5.7",
"@types/react": "^17.0.0",
"@types/react-intl": "^3.0.0",
"@types/tcp-port-used": "^1.0.0",
"@types/webpack": "^4.41.25",
"@types/yup": "^0.29.9",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"apollo-link-schema": "^1.2.5",
"apollo-server": "^2.19.0",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"concurrently": "^5.3.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"faker": "^5.1.0",
"get-graphql-schema": "^2.1.2",
"graphql-middleware": "^4.0.2",
"husky": "^4.3.0",
"lru-cache": "^6.0.0",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rxjs": "^6.6.3",
"sonarqube-scanner": "^2.8.0",
"storybook-addon-intl": "^2.4.1",
"storybook-addon-material-ui": "^0.9.0-alpha.20",
"tcp-port-used": "^1.0.1",
"ts-loader": "^8.0.11",
"typescript": "^4.1.2"
}
}