forked from tinacms/tina-self-hosted-ssg-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.39 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
{
"name": "tina-standalone",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "TINA_PUBLIC_IS_LOCAL=true tinacms dev -c 'eleventy --input='site' --serve --port $PORT' ",
"dev:prod": "TINA_PUBLIC_IS_LOCAL=false tinacms dev -c 'eleventy --input='site' --serve'",
"build": "tinacms build --verbose && eleventy --input='site'",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@tinacms/cli": "^1.5.34",
"@tinacms/datalayer": "^1.2.29",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongodb-level": "^0.0.2",
"next": "^14.0.1",
"next-auth": "^4.24.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"serverless-http": "^3.2.0",
"tinacms": "^1.5.24",
"tinacms-authjs": "^1.0.0",
"tinacms-gitprovider-github": "^1.0.0",
"tsx": "^3.12.7"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@types/cookie-parser": "^1.4.5",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vercel/node": "^3.0.7",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"typescript": "^5.0.2"
}
}