forked from tinacms/tina-starter-alpaca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.25 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
81
82
83
{
"name": "forestry",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"debug": "NODE_OPTIONS='--inspect' next",
"build": "next build",
"start": "cross-env NODE_ENV=production next start",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"create-indices": "npx babel-node ./indices/createIndices.js"
},
"keywords": [
"nextjs",
"tinaCMS"
],
"author": "Bejamas",
"license": "ISC",
"dependencies": {
"@tinacms/api-git": "^0.7.0",
"@tinacms/git-client": "^0.6.2",
"@zeit/next-sass": "^1.0.1",
"algoliasearch": "^4.1.0",
"axios": "^0.19.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fast-glob": "^3.2.2",
"file-loader": "^6.0.0",
"gray-matter": "^4.0.2",
"markdown-toc": "^1.2.0",
"moment": "^2.24.0",
"next": "^9.3.3",
"next-svgr": "^0.0.2",
"next-tinacms-github": "^0.1.1",
"next-tinacms-json": "^0.3.7",
"next-tinacms-markdown": "^0.2.7",
"node-sass": "^4.13.1",
"raw-loader": "^4.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-instantsearch-dom": "^6.4.0",
"react-markdown": "^4.3.1",
"react-syntax-highlighter": "^12.2.1",
"react-textarea-autosize": "^7.1.2",
"react-tinacms-editor": "^0.7.2",
"react-tinacms-github": "^0.4.1",
"react-tinacms-inline": "^0.6.0",
"remarkable": "^2.0.0",
"slugify": "^1.4.0",
"styled-components": "^5.1.0",
"styled-normalize": "^8.0.7",
"tinacms": "^0.21.0",
"typeface-source-code-pro": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"babel-eslint": "^10.1.0",
"babel-plugin-inline-react-svg": "^1.1.1",
"babel-plugin-styled-components": "^1.10.7",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"hygen-next-tinacms-github": "https://github.com/dwalkr/hygen-next-tinacms-github",
"lint-staged": "^10.1.0",
"prettier": "2.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,json}": [
"prettier --write"
]
}
}