-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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
{
"name": "teun.zengerink.com",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"lint:eslint": "eslint src/",
"lint:tsc": "tsc --noEmit",
"lint": "yarn lint:eslint && yarn lint:tsc",
"postinstall": "husky && playwright install",
"start": "next start",
"test:e2e": "playwright test src/e2e",
"test:smoke": "export $(grep -v '^#' .env | xargs) && curl -v --silent $NEXT_PUBLIC_PROTO://$NEXT_PUBLIC_HOST/ 2>&1 | grep -q $(git rev-parse HEAD)",
"test:unit": "jest --ci --collectCoverage",
"test:watch": "jest --watch",
"test": "yarn lint && yarn test:unit && yarn test:e2e"
},
"dependencies": {
"classnames": "^2.5.1",
"js-yaml": "^4.1.0",
"marked": "^15.0.6",
"next": "^15.1.5",
"next-build-id": "^3.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"slugify": "^1.6.6"
},
"devDependencies": {
"@next/eslint-plugin-next": "^15.1.1",
"@playwright/test": "^1.49.1",
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.12.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.6",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "5.2.1",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.3"
}
}