-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.89 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
89
90
91
92
{
"name": "optimisticoder",
"version": "1.1.2",
"private": false,
"contributors": [
{
"name": "Azvya Erstevan I",
"email": "[email protected]",
"url": "https://optimisticoder.com"
}
],
"scripts": {
"dev": "next dev --turbo",
"build": "npm run prebuild && next build",
"prebuild": "npx tsx ./scripts/prebuild.ts",
"start": "next start",
"lint": "next lint --dir src --fix",
"test": "cypress run",
"ci": "npm run generate-ci && cypress run --spec \"tests/e2e/merged.cy.ts\" --config video=false --headless --browser electron",
"generate-ci": "npx tsx scripts/generate-ci.ts",
"cypress": "cypress open",
"detect-circular": "npx tsx scripts/detect-circular-deps.ts",
"encrypt-all": "env-encrypt local && env-encrypt production",
"decrypt-all": "env-decrypt local && env-decrypt production"
},
"dependencies": {
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"client-only": "^0.0.1",
"cntl": "^1.0.0",
"date-fns": "^3.6.0",
"embla-carousel": "^8.3.0",
"embla-carousel-autoplay": "^8.3.0",
"embla-carousel-react": "^8.3.0",
"encrypted-env": "^0.2.1",
"gray-matter": "^4.0.3",
"js-cookie": "^3.0.5",
"jsonata": "^2.0.5",
"next": "14.2.4",
"next-nprogress-bar": "^2.3.14",
"react": "^18.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-loading-skeleton": "^3.5.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^10.0.5",
"reading-time": "^1.5.0",
"remark-gfm": "^4.0.0",
"remark-unwrap-images": "^4.0.0",
"server-only": "^0.0.1",
"sharp": "^0.33.5"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@tailwindcss/typography": "^0.5.15",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.16.11",
"@types/prop-types": "^15.7.13",
"@types/react": "^18.3.11",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "~7.10.0",
"@typescript-eslint/parser": "~7.10.0",
"autoprefixer": "10.4.19",
"copy-file": "^11.0.0",
"cross-env": "^7.0.3",
"cypress": "^13.15.0",
"dotenv": "^16.4.5",
"dpdm": "^3.14.0",
"eslint": "^8.57.1",
"eslint-config-love": "~48.0.0",
"eslint-config-next": "14.2.4",
"eslint-plugin-cypress": "^3.5.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.37.1",
"file-loader": "^6.2.0",
"fs-extra": "^11.2.0",
"postcss": "^8.4.47",
"prettier": "3.3.2",
"simple-git": "^3.27.0",
"tailwindcss": "^3.4.13",
"tsx": "^4.19.1",
"typescript": "~5.4.5",
"typescript-eslint": "^7.18.0",
"user-agent-data-types": "^0.4.2"
}
}