-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 5.05 KB
/
Copy pathpackage.json
File metadata and controls
135 lines (135 loc) · 5.05 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "keepsimple-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development APP_ENV=local next dev -p 3005",
"prebuild:widget": "cd widget && yarn install --frozen-lockfile && yarn build",
"prebuild": "yarn prebuild:widget",
"prebuild:staging": "yarn prebuild:widget",
"build": "cross-env NODE_ENV=production APP_ENV=prod next build",
"generate:llms": "cross-env LLMS_MODE=curated ts-node --compiler-options '{\"module\":\"commonjs\",\"target\":\"es2020\"}' scripts/generate-llms.ts",
"generate:llms:full": "cross-env LLMS_MODE=full ts-node --compiler-options '{\"module\":\"commonjs\",\"target\":\"es2020\"}' scripts/generate-llms.ts",
"generate:llms:pages": "ts-node --compiler-options '{\"module\":\"commonjs\",\"target\":\"es2020\"}' scripts/generate-llms-pages.ts",
"start": "cross-env NODE_ENV=production APP_ENV=production yarn build && next start -p 4033",
"start:staging": "cross-env NODE_ENV=production APP_ENV=staging next start -p 3005",
"build:staging": "cross-env NODE_OPTIONS=--require=./build-fetch-patch.js NODE_ENV=production APP_ENV=staging next build",
"test:e2e": "playwright test --project=chromium",
"test:e2e:ui": "playwright test --project=chromium --ui",
"test:e2e:p0": "playwright test tests/p0 --project=chromium",
"test:e2e:p1": "playwright test tests/p1 --project=chromium",
"test:e2e:p2": "playwright test tests/p2 --project=chromium",
"test:e2e:report": "playwright show-report",
"render-report": "node .claude/keepsimple-qa/render-report.js",
"check-links": "linkinator https://keepsimple.io --config linkinator.config.json --format json > reports/links-$(date +%Y-%m-%d).json && echo 'Done. Report saved to reports/links-YYYY-MM-DD.json'",
"check-links:summary": "linkinator https://keepsimple.io --config linkinator.config.json",
"render-links": "node .claude/keepsimple-qa/render-links-report.js",
"prepare": "husky install"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.2.2",
"@next/bundle-analyzer": "^16.2.3",
"@svgr/webpack": "^8.1.0",
"axios": "^1.13.4",
"classnames": "2.3.1",
"cookie": "0.6.0",
"cross-env": "7.0.3",
"cypress": "^14.5.2",
"cypress-social-logins": "^1.14.2",
"cypress-v10-preserve-cookie": "^1.2.1",
"d3-geo": "^3.1.1",
"date-fns": "2.30.0",
"dotenv": "^16.4.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"fast-geoip": "^1.1.88",
"geoip-lite": "1.4.2",
"html2canvas": "^1.4.1",
"isomorphic-dompurify": "^3.12.0",
"js-cookie": "^3.0.5",
"lodash.debounce": "4.0.8",
"lodash.unescape": "4.0.1",
"mixpanel-browser": "^2.65.0",
"next": "15.0.5",
"next-auth": "4.23.2",
"nodemailer": "^6.10.0",
"prettier": "^3.6.2",
"react": "19.0.3",
"react-beautiful-dnd": "13.1.1",
"react-confetti": "6.1.0",
"react-confetti-explosion": "2.1.2",
"react-day-picker": "^10.0.0",
"react-dom": "19.0.3",
"react-dropzone": "^15.0.0",
"react-ga4": "1.4.1",
"react-hook-form": "^7.71.1",
"react-icalendar-link": "3.0.2",
"react-intersection-observer": "^9.16.0",
"react-loading-skeleton": "3.4.0",
"react-markdown": "8.0.3",
"react-minimal-pie-chart": "9.1.2",
"react-simple-player": "1.1.0",
"react-slick": "0.29.0",
"react-snowfall": "^2.4.0",
"react-to-pdf": "1.0.1",
"react-toastify": "8.0.3",
"react-tooltip": "5.27.1",
"rehype-raw": "6.1.1",
"rehype-sanitize": "^6.0.0",
"remark-breaks": "3.0.2",
"sass": "1.32.8",
"slick-carousel": "1.8.1",
"topojson-client": "^3.1.0",
"uuid": "8.3.2",
"victory": "36.3.0",
"zod": "^4.3.6"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix --cache"
],
"**/*.{js,jsx,ts,tsx,scss,json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@axe-core/playwright": "^4.11.2",
"@babel/core": "7.19.3",
"@cypress/react": "^9.0.1",
"@cypress/vite-dev-server": "^6.0.3",
"@playwright/test": "^1.59.1",
"@types/amplitude-js": "8.16.2",
"@types/classnames": "2.2.11",
"@types/d3-geo": "^3.1.0",
"@types/geojson": "^7946.0.16",
"@types/js-cookie": "^3.0.6",
"@types/lodash.debounce": "4.0.7",
"@types/lodash.unescape": "4.0.7",
"@types/node": "^24.5.2",
"@types/react": "18.2.34",
"@types/react-dom": "18.2.14",
"@types/react-slick": "0.23.10",
"@types/swiper": "6.0.0",
"@types/topojson-client": "^3.1.5",
"@types/topojson-specification": "^1.0.5",
"@types/uuid": "8.3.1",
"axe-core": "^4.11.4",
"babel-loader": "8.2.5",
"eslint": "^9.32.0",
"eslint-config-next": "^15.4.5",
"husky": "^9.1.7",
"linkinator": "^7.6.1",
"marked": "^18.0.2",
"pixelmatch": "^7.2.0",
"pngjs": "^7.0.0",
"sass-loader": "13.1.0",
"start-server-and-test": "^2.0.12",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "5.2.2",
"web-vitals": "^5.2.0",
"yaml": "^2.8.4"
}
}