This repository was archived by the owner on Aug 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 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
55
56
57
{
"name": "population-graph-app",
"version": "0.1.0",
"private": true,
"engines": {
"node": "18.17.1"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"lint": "next lint --fix",
"lint:check": "next lint --max-warnings=0",
"lint-css": "stylelint src/**/* --fix",
"lint-css:check": "stylelint src/**/* --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test:e2e": "playwright test"
},
"dependencies": {
"@tanstack/react-query": "4.35.0",
"@trpc/client": "10.38.1",
"@trpc/next": "10.38.1",
"@trpc/react-query": "10.38.1",
"@trpc/server": "^10.38.0",
"@types/node": "18.17.14",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"axios": "1.5.0",
"highcharts": "11.1.0",
"highcharts-react-official": "3.2.1",
"linaria": "4.5.4",
"msw": "1.3.0",
"next": "13.4.19",
"next-linaria": "0.11.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.2.2",
"zod": "3.22.2"
},
"devDependencies": {
"@linaria/stylelint-config-standard-linaria": "4.5.1",
"@playwright/test": "1.37.1",
"@typescript-eslint/eslint-plugin": "6.6.0",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.0",
"eslint-plugin-import": "2.28.1",
"prettier": "3.0.3",
"stylelint": "15.10.3"
},
"msw": {
"workerDirectory": "public"
}
}