-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 951 Bytes
/
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
{
"private": true,
"scripts": {
"dev": "npm run tina-dev",
"build": "npm run tina-build",
"start": "npm run tina-start",
"export": "next export",
"lint": "next lint --fix && tsc",
"tina-dev": "tinacms server:start -c \"next dev\"",
"tina-build": "tinacms server:start -c \"next build\"",
"tina-start": "tinacms server:start -c \"next start\""
},
"devDependencies": {
"@tinacms/cli": "^0.59.0",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-next": "^12.0.8",
"eslint-config-prettier": "^8.3.0",
"typescript": "^4.5.5"
},
"dependencies": {
"next": "latest",
"next-dark-mode": "^3.0.0",
"prism-react-renderer": "^1.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.49.0",
"styled-components": "^5.3.3",
"tinacms": "^0.64.2"
}
}