-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
102 lines (102 loc) · 2.85 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
93
94
95
96
97
98
99
100
101
102
{
"name": "mels-loop",
"version": "1.2.3",
"description": "A Comprehensive Guide to The Story of Mel",
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"hacker",
"folklore",
"nextjs"
],
"homepage": "https://melsloop.com",
"bugs": {
"url": "https://github.com/tomerlichtash/mels-loop/issues",
"email": "aboutmelsloop@gmail.com"
},
"contributors": [
{
"name": "Tomer Lichtash",
"email": "tomerlichtash@gmail.com",
"url": "https://github.com/tomerlichtash"
},
{
"name": "(David *)Frenkiel",
"email": "dfl.github@gmail.com",
"url": "https://github.com/imdfl"
}
],
"private": true,
"scripts": {
"upload": "npx ts-node scripts/upload-files.ts",
"clean": "rm -rf .next",
"dev": "next dev",
"build": "next build",
"build:sitemap": "next-sitemap",
"start": "next start",
"lint": "eslint . -f codeframe",
"prettier:check": "npx prettier --config .prettierrc --ignore-path .prettierignore --check src",
"test:e2e": "playwright test",
"test:unit": "vitest __tests__",
"test:unit:ci": "vitest __tests__ --reporter=junit --outputFile.junit=unit-tests-results.xml"
},
"dependencies": {
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-navigation-menu": "^1.1.1",
"@radix-ui/react-popover": "^1.0.2",
"@radix-ui/react-scroll-area": "^1.0.2",
"@radix-ui/react-toggle-group": "1.0.1",
"@radix-ui/react-tooltip": "1.0.2",
"@sendgrid/mail": "^7.7.0",
"@stitches/react": "^1.2.8",
"cookies-next": "^2.1.1",
"date-fns": "^2.29.3",
"gray-matter": "^4.0.3",
"js-cookie": "^3.0.1",
"lodash.orderby": "^4.6.0",
"next": "13.0.6",
"next-axiom": "^0.16.0",
"react": "18.2.0",
"react-burger-menu": "^3.0.8",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-google-recaptcha": "^2.1.0",
"tmp": "^0.2.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@next/env": "^13.0.6",
"@next/eslint-plugin-next": "^13.0.6",
"@playwright/test": "^1.28.1",
"@stylable/core": "^5.4.0",
"@stylable/dom-test-kit": "5.4.0",
"@stylable/node": "^5.4.0",
"@stylable/optimizer": "^5.4.0",
"@stylable/runtime": "^5.4.0",
"@stylable/webpack-plugin": "^5.4.0",
"@types/js-cookie": "^3.0.2",
"@types/mime-types": "^2.1.1",
"@types/node": "^20.3.1",
"@types/react": "^18.0.26",
"@types/react-google-recaptcha": "^2.1.5",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"create-temp-directory": "^2.0.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"next-sitemap": "^3.1.32",
"path": "^0.12.7",
"simple-markdown": "^0.7.3",
"typescript": "^4.9.3",
"vite": "^4.3.9",
"vitest": "^0.25.4",
"webpack": "^5.75.0"
}
}