-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
109 lines (109 loc) · 3.32 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
{
"name": "explore-education-statistics-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@hello-pangea/dnd": "^16.5.0",
"@next/bundle-analyzer": "^14.2.13",
"@next/env": "^14.2.13",
"@tanstack/react-query": "4.32.0",
"applicationinsights": "^2.7.0",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"core-js": "^3.31.1",
"cross-env": "^7.0.2",
"cross-fetch": "^3.0.6",
"date-fns": "^2.16.1",
"date-fns-tz": "^2.0.1",
"explore-education-statistics-common": "workspace:*",
"express": "^4.18.2",
"express-basic-auth": "^1.2.0",
"govuk-frontend": "^5.2.0",
"helmet": "^4.1.1",
"immer": "^10.0.2",
"leaflet": "^1.9.4",
"lodash": "^4.17.21",
"memoizee": "^0.4.14",
"next": "^14.2.13",
"next-sitemap": "^4.2.3",
"nookies": "^2.5.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-ga4": "^2.1.0",
"react-leaflet": "^4.2.1",
"react-markdown": "^8.0.0",
"recharts": "^2.7.2",
"referrer-policy": "^1.2.0",
"use-immer": "^0.9.0",
"webpack": "^5.57.1",
"yup": "^1.3.3"
},
"devDependencies": {
"@swc/core": "^1.4.17",
"@swc/jest": "^0.2.36",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/classnames": "^2.2.10",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/leaflet": "^1.5.17",
"@types/memoizee": "^0.4.4",
"@types/node": "^18.19.33",
"@types/qs": "^6.9.7",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/whatwg-fetch": "0.0.33",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"eslint": "^8.57.0",
"eslint-webpack-plugin": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"identity-obj-proxy": "3.0.0",
"intersection-observer": "^0.11.0",
"jest": "^29.6.1",
"jest-junit": "^12.0.0",
"jest-mock-extended": "^3.0.4",
"jest-next-dynamic": "^1.0.1",
"jest-resolve": "^29.6.1",
"jest-serializer-html": "^7.1.0",
"jest-watch-typeahead": "2.2.2",
"next-router-mock": "^0.9.13",
"node-mocks-http": "^1.12.2",
"normalize.css": "^8.0.1",
"react-test-renderer": "^18.2.0",
"sass": "1.32.13",
"stylelint": "^15.7.0",
"stylelint-webpack-plugin": "^4.1.1",
"typescript": "^5.5.4",
"urlpattern-polyfill": "^10.0.0",
"webpack-dev-server": "^4.3.1"
},
"scripts": {
"start": "cross-env NODE_ENV=production NEXT_CONFIG_MODE=server node server.js",
"dev": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 node server.js",
"build": "next build",
"build:analyze": "cross-env ANALYZE=true next build",
"postbuild": "next-sitemap",
"lint": "pnpm lint:js && pnpm lint:style",
"lint:js": "eslint src/**/*.{ts,tsx}",
"lint:style": "stylelint src/**/*.{scss,css}",
"test": "jest",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:snapshot": "jest --updateSnapshot",
"tsc": "tsc --noEmit"
},
"browserslist": [
">0.2%",
"not dead",
"not ie < 11",
"not op_mini all"
],
"jest-junit": {
"ancestorSeparator": " › ",
"suiteName": "Frontend Jest tests",
"outputName": "junit-frontend.xml"
}
}