-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 3.25 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 3.25 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
{
"name": "paste2qr",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:static": "next build && next export",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:performance": "node scripts/test-performance.js",
"test:accessibility": "node scripts/test-accessibility.js",
"test:browser": "node scripts/test-browser.js",
"test:comprehensive": "node scripts/test-comprehensive.js",
"test:layout": "node scripts/test-layout.js",
"test:qr-editing": "node scripts/test-qr-editing.js",
"test:action-buttons": "node scripts/test-action-buttons.js",
"demo:browser": "node scripts/test-browser.js --timeout=1000",
"demo:comprehensive": "node scripts/test-comprehensive.js --timeout=1000",
"demo:pagespeed": "node scripts/test-pagespeed.js --timeout=1000",
"demo:layout": "node scripts/test-layout.js --timeout=1000",
"demo:qr-editing": "node scripts/test-qr-editing.js --timeout=1000",
"demo:action-buttons": "node scripts/test-action-buttons.js --timeout=1000",
"test:contact-qr": "node scripts/test-contact-qr-page.js",
"demo:contact-qr": "node scripts/test-contact-qr-page.js --timeout=1000",
"test:content-pages": "node scripts/test-content-pages.js",
"test:content-seo": "node scripts/test-content-seo.js",
"test:content-performance": "node scripts/test-content-performance.js",
"test:navigation-menu": "node scripts/test-navigation-menu.js",
"demo:content-pages": "node scripts/test-content-pages.js --timeout=1000",
"demo:content-seo": "node scripts/test-content-seo.js --timeout=1000",
"demo:content-performance": "node scripts/test-content-performance.js --timeout=1000",
"demo:navigation-menu": "node scripts/test-navigation-menu.js --timeout=1000",
"test:analytics": "node scripts/test-analytics-final.js",
"demo:analytics": "node scripts/test-analytics-final.js --timeout=1000"
},
"dependencies": {
"chrome-launcher": "^1.2.0",
"gray-matter": "^4.0.3",
"i18next": "^23.7.6",
"i18next-browser-languagedetector": "^7.2.0",
"next": "14.0.4",
"next-mdx-remote": "^5.0.0",
"next-pwa": "^5.6.0",
"qrcode": "^1.5.3",
"react": "^18",
"react-dom": "^18",
"react-i18next": "^13.5.0",
"workbox-webpack-plugin": "^7.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^14.1.2",
"@types/minimatch": "^5.1.2",
"@types/node": "^20",
"@types/qrcode": "^1.5.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"jest": "^29.7.0",
"jest-axe": "^10.0.0",
"jest-environment-jsdom": "^29.7.0",
"lighthouse": "^11.4.0",
"playwright": "^1.40.0",
"postcss": "^8",
"puppeteer": "^24.21.0",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}