-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.2 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
{
"name": "template",
"private": true,
"version": "1.0.0",
"scripts": {
"build": "npm run next:build && npm run next:export",
"dev": "npm run backend",
"next:dev": "next dev",
"next:build": "next build",
"next:export": "next export",
"next:start": "next start",
"next:lint": "next lint",
"backend": "dotenv -c -- bash -c 'wrangler pages dev -- npm run next:dev'",
"frontend": "npm run next:dev"
},
"dependencies": {
"next": "^12.1.5",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.2",
"@cloudflare/workers-types": "^3.4.0",
"@types/node": "^17.0.23",
"@types/react": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"autoprefixer": "^10.4.4",
"dotenv-cli": "^5.1.0",
"eslint": "^8.13.0",
"eslint-config-next": "^12.1.5",
"eslint-config-prettier": "^8.5.0",
"postcss": "^8.4.12",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.3",
"wrangler": "^0.0.25"
},
"eslintConfig": {
"plugins": [
"@typescript-eslint"
],
"extends": [
"prettier",
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended"
]
}
}