-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
70 lines (70 loc) · 2.28 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
{
"name": "links-for-israel-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --loglevel warn --write \"**/*.{ts,tsx,css,md}\"",
"posttest": "npm run format",
"prepare": "husky install",
"cat-dev-project": "find . -type d \\( -name '.next' -o -name 'node_modules' \\) -prune -o \\( -name '*.ts' -o -name '*.tsx' -o -name '*.scss' \\) -exec sh -c 'echo {} >> concatenated_file.txt; cat {} >> project-concat.txt' \\;",
"cat-links": "ts-node ./scripts/concatLinks.ts"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fortawesome/fontawesome-free": "^6.4.2",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^14.0.3",
"@radix-ui/react-portal": "^1.0.4",
"@types/mdx": "^2.0.10",
"framer-motion": "^10.16.5",
"gray-matter": "^4.0.3",
"mixpanel-browser": "^2.48.1",
"next": "^14.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"unified": "^11.0.4"
},
"devDependencies": {
"@octokit/rest": "^20.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/mixpanel-browser": "^2.47.5",
"@types/node": "^20.10.0",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"autoprefixer": "^10.4.16",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.3",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"sass": "^1.69.5",
"tailwindcss": "^3.3.5",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{ts,tsx,css,md}": "prettier --write"
}
}