forked from simonyiszk/konf-web-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.53 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
{
"name": "konf-web-2023",
"private": true,
"version": "0.0.1",
"packageManager": "^[email protected]",
"scripts": {
"build": "next build",
"build:analyze": "cross-env ANALYZE=true npm run build",
"clean": "git clean --interactive -dx --exclude .env.local --exclude \".env.*.local\" --exclude node_modules/",
"dev": "next dev",
"https": "local-ssl-proxy --source 3001 --target 3000",
"devs": "npm-run-all --parallel https dev",
"fix": "run-s fix:*",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext .js,.ts,.tsx --ignore-path ./.gitignore .",
"lint:prettier": "prettier --check --ignore-unknown --ignore-path ./.gitignore .",
"lint:typescript": "tsc --noEmit",
"start": "next start"
},
"dependencies": {
"@mdx-js/loader": "^2.1.5",
"@mdx-js/react": "^2.1.5",
"@next/bundle-analyzer": "^13.0.6",
"@next/font": "^13.0.6",
"@next/mdx": "^13.0.6",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tsconfig/next": "^1.0.4",
"autoprefixer": "^10.4.13",
"clsx": "^1.2.1",
"framer-motion": "^7.6.19",
"gray-matter": "^4.0.3",
"next": "^13.0.6",
"next-compose-plugins": "^2.2.1",
"next-mdx-remote": "^4.2.0",
"next-pwa": "5.6.0",
"next-transpile-modules": "^10.0.0",
"plaiceholder": "^2.5.0",
"postcss": "8.4.19",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^7.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"sass": "^1.56.2",
"sharp": "^0.31.2",
"swr": "^2.0.0",
"tailwindcss": "^3.2.4"
},
"devDependencies": {
"@tsconfig/next": "^1.0.4",
"@types/cookie": "^0.5.1",
"@types/mdx-js__react": "^1.5.5",
"@types/node": "^18.11.13",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"cross-env": "^7.0.3",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.0.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-etc": "^2.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-tailwindcss": "3.7.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"typescript": "^4.9.4",
"typescript-plugin-css-modules": "^4.1.1"
}
}