forked from Contribunator/Contribunator
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
67 lines (67 loc) · 2.42 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
{
"name": "contribunator",
"version": "0.1.1",
"private": true,
"scripts": {
"analyze": "ANALYZE=true npm run build:e2e",
"build:demo": "NEXT_PUBLIC_TESTING=DEMO NEXT_TELEMETRY_DISABLED=1 next build",
"build:e2e": "NODE_ENV=test NEXT_TELEMETRY_DISABLED=1 next build",
"build": "NEXT_TELEMETRY_DISABLED=1 next build",
"ci": "CI=1 start-server-and-test start:e2e http://localhost:3000 test:e2e",
"dev:demo": "NEXT_PUBLIC_TESTING=DEMO NEXT_TELEMETRY_DISABLED=1 next dev | pino-pretty -m message -i time -c # uses .env.test",
"dev:e2e": "NODE_ENV=test NEXT_TELEMETRY_DISABLED=1 next dev | pino-pretty -m message -i time -c # uses .env.test",
"dev": "NEXT_TELEMETRY_DISABLED=1 next dev | pino-pretty -m message -i time -c",
"lint": "NEXT_TELEMETRY_DISABLED=1 next lint",
"prettier": "./node_modules/.bin/prettier -w .",
"start:demo": "NEXT_PUBLIC_TESTING=DEMO NEXT_TELEMETRY_DISABLED=1 next start",
"start:e2e": "NODE_ENV=test NEXT_TELEMETRY_DISABLED=1 next start # uses .env.test",
"start": "NEXT_TELEMETRY_DISABLED=1 next start",
"test:e2e": "npx playwright test",
"test": "npm run build:e2e && npm run ci"
},
"dependencies": {
"@hcaptcha/react-hcaptcha": "^1.8.1",
"@highlight-run/next": "^3.1.0",
"@highlight-run/react": "^3.2.0",
"@logtail/next": "^0.1.0",
"@octokit/auth-app": "^4.0.9",
"@octokit/rest": "^19.0.7",
"autoprefixer": "10.4.14",
"daisyui": "^3.0.3",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"encoding": "^0.1.13",
"formik": "^2.2.9",
"lodash": "^4.17.21",
"next": "^13.4.4",
"next-auth": "^4.22.1",
"octokit-commit-multiple-files": "^4.3.0",
"pino": "^8.14.1",
"postcss": "8.4.23",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-cropper": "^2.3.3",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"sharp": "^0.32.1",
"tailwindcss": "3.3.1",
"twitter-text": "^3.1.0",
"typescript": "^5.0.4",
"yaml": "^2.3.1",
"yup": "^1.1.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.7",
"@playwright/test": "^1.34.0",
"@types/lodash": "^4.14.195",
"@types/node": "18.15.12",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"@types/twitter-text": "^3.1.5",
"eslint": "8.39.0",
"eslint-config-next": "^13.4.4",
"eslint-config-prettier": "^8.8.0",
"pino-pretty": "^10.0.0",
"start-server-and-test": "^2.0.0"
}
}