forked from catherinepollard/futurenhs-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) Β· 4.03 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
106
107
108
109
110
111
112
113
114
115
116
{
"name": "frontend",
"license": "MIT",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "yarn generate",
"dev": "concurrently \"yarn start:stubs\" \"NODE_ENV=development node server.js\"",
"dev:trace": "NODE_OPTIONS='--require ./tracing.js' yarn dev",
"prebuild": "yarn generate",
"build": "NODE_ENV=production next build",
"start": "NODE_ENV=production NODE_OPTIONS='--require ./tracing.js' node server.js",
"pretest": "yarn generate",
"test": "jest",
"lint": "yarn eslint . --ext .js,.ts,.tsx",
"clean": "rm -rf .next",
"generate": "graphql-codegen --config codegen.yaml",
"cypress:local": "concurrently \"yarn start:stubs\" \"NODE_ENV=test node server.js\" \"cypress open --config-file ./cypress.json\"",
"start:stubs": "node stubServer"
},
"dependencies": {
"@apollo/federation": "^0.20.0",
"@apollo/gateway": "^0.21.0",
"@azure/monitor-opentelemetry-exporter": "^1.0.0-preview.5",
"@azure/storage-blob": "^12.2.1",
"@fnhs/event-models": "file:../event-models/typescript",
"@microsoft/applicationinsights-web": "^2.5.9",
"@opentelemetry/api": "^0.12.0",
"@opentelemetry/core": "^0.12.0",
"@opentelemetry/node": "^0.12.0",
"@opentelemetry/plugin-express": "^0.11.0",
"@opentelemetry/plugin-https": "^0.12.0",
"@opentelemetry/plugin-pg": "^0.11.0",
"@opentelemetry/plugin-pg-pool": "^0.11.0",
"@opentelemetry/tracing": "^0.12.0",
"@types/testing-library__react": "^10.2.0",
"@urql/exchange-graphcache": "^3.1.7",
"apollo-server-micro": "^2.19.0",
"axios": "^0.21.0",
"azure-eventgrid": "^1.6.0",
"classnames": "^2.2.6",
"connect-pg-simple": "^6.2.1",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"graphql": "^15.3.0",
"isomorphic-unfetch": "^3.0.0",
"ms-rest-azure": "^3.0.0",
"next": "10.0.1",
"next-images": "^1.4.1",
"next-urql": "^1.1.0",
"nhsuk-frontend": "^3.1.0",
"nhsuk-react-components": "https://raw.githubusercontent.com/FutureNHS/nhsuk-react-components/packages/futurenhs-nhsuk-react-components-1.2.6.tgz",
"node-sass": "^4.14.1",
"passport": "^0.4.1",
"passport-azure-ad": "^4.3.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-hook-form": "^6.8.2",
"react-is": "^16.13.1",
"sass": "^1.26.11",
"sass-extract": "^2.1.0",
"sass-extract-js": "^0.4.0",
"sass-extract-loader": "^1.1.0",
"styled-components": "^5.2.0",
"urql": "^1.10.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-typescript": "^7.12.1",
"@graphql-codegen/cli": "1.19.1",
"@graphql-codegen/typescript": "1.17.11",
"@graphql-codegen/typescript-operations": "^1.17.9",
"@graphql-codegen/typescript-urql": "^2.0.1",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.0",
"@types/classnames": "^2.2.10",
"@types/jest": "^26.0.14",
"@types/node": "^14.14.6",
"@types/node-fetch": "^2.5.7",
"@types/passport-strategy": "^0.2.35",
"@types/react": "^16.9.56",
"@types/styled-components": "^5.1.3",
"@types/testing-library__jest-dom": "^5.9.3",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.1",
"@urql/devtools": "^2.0.2",
"apollo-server-express": "^2.18.1",
"babel-jest": "^26.6.1",
"babel-plugin-styled-components": "^1.11.1",
"concurrently": "^5.3.0",
"cypress": "5.5.0",
"cypress-file-upload": "^4.1.1",
"eslint": "^7.13.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.0",
"ignore-loader": "^0.1.2",
"jest": "^26.4.2",
"jest-styled-components": "^7.0.3",
"lint-staged": ">=10",
"typescript": "^4.0.2"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,md,yaml,yml,graphql}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}