-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.36 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
{
"name": "lobbywatch-frontend",
"version": "1.0.0",
"engines": {
"node": "20.x"
},
"description": "Lobbywatch.ch Frontend",
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start -p ${PORT:=3000}",
"prepare": "husky install",
"lint": "eslint --fix .",
"test": "eslint",
"klog": "find . -name '*.js' -not -path \"./node_modules*\" -not -path \"./.next*\" | xargs wc -l"
},
"author": "Thomas Preusse <t@preus.se> (https://t.preus.se/)",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/lobbywatch/website.git"
},
"bugs": {
"url": "https://github.com/lobbywatch/website/issues"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@stripe/react-stripe-js": "^2.7.1",
"@stripe/stripe-js": "^3.5.0",
"accept-language": "^3.0.15",
"body-scroll-lock": "^3.1.5",
"clipboard-copy": "^4.0.1",
"core-js": "^3.21.1",
"d3-array": "^1.0.2",
"d3-collection": "^1.0.2",
"d3-ease": "^1.0.7",
"d3-format": "^1.4.5",
"d3-hierarchy": "^1.1.9",
"d3-interpolate": "^3.0.1",
"d3-time": "^1.1.0",
"d3-time-format": "^2.3.0",
"d3-timer": "^1.0.10",
"dataloader": "^2.0.0",
"downshift": "^2.2.2",
"entities": "^3.0.1",
"express": "^4.17.3",
"glamor": "^2.20.22",
"graphql": "^16.8.1",
"gsheets": "^3.0.1",
"isomorphic-unfetch": "^3.1.0",
"load-script": "^1.0.0",
"lodash": "^4.17.21",
"lru-cache": "^7.0.0",
"next": "^14.2.3",
"prop-types": "^15.8.1",
"querystring": "^0.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^4.3.1",
"react-maskedinput": "^4.0.1",
"react-textarea-autosize": "^7.1.2",
"scroll-into-view": "^1.15.0",
"sharp": "^0.33.4",
"striptags": "^3.2.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/applepayjs": "^14.0.8",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"nodemon": "^3.1.3",
"prettier": "^3.3.1",
"swr": "^2.2.5",
"typescript": "^5.4.5"
},
"cacheDirectories": [
"node_modules",
".next/cache"
]
}