-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.13 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
{
"name": "formguide",
"version": "1.43.1",
"private": true,
"scripts": {
"dev": "next dev",
"dev:test": "jest --watch",
"lint": "run-p lint:*",
"lint:next": "next lint",
"lint:build": "tsc --noEmit",
"lint:prettier": "prettier --check .",
"prettier": "prettier --write .",
"_lint:css": "csslint **/*.css",
"build": "next build",
"changelog": "npx conventional-changelog-cli -i CHANGELOG.md --same-file -p conventionalcommits",
"start": "next start",
"setup": "run-p setup:*",
"setup:functions": "npm install --prefix ./functions",
"release": "run-s release:*",
"release:version": "HUSKY=0 npx standard-version --no-verify",
"release:push": "git push --follow-tags origin main",
"tsc": "tsc --noEmit"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"@mui/x-data-grid": "^7.3.1",
"@visx/curve": "~3",
"@visx/legend": "~3",
"@visx/responsive": "~3",
"@visx/scale": "~3",
"@visx/tooltip": "~3",
"@visx/xychart": "~3",
"calculate-correlation": "^1.2.3",
"csv": "^6.3.8",
"d3-color-1-fix": "*",
"date-fns": "^3.6.0",
"husky": "^9.0.11",
"ioredis": "^5.4.1",
"itscalledsoccer": "^1.0.2",
"kbar": "^0.1.0-beta.45",
"next": "^14.2.3",
"next-seo": "^6.5.0",
"next-transpile-modules": "^10.0.1",
"node-gzip": "^1.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-use-cookie": "^1.5.0",
"swr": "^2.2.5"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/node-gzip": "^1.1.3",
"@types/react": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.7",
"@typescript-eslint/parser": "^7.7",
"csslint": "^1.0.5",
"devmoji": "~2.3",
"eslint": "^8.34.0",
"eslint-config-next": "^13.1.6",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"engines": {
"node": "20.x"
},
"resolutions": {
"d3-color": "d3-color-1-fix"
}
}