forked from tinacms/tina.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.5 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "tinacms.org",
"version": "1.0.0",
"description": "A hub for Tina's documentation, blog & general info.",
"author": "Forestry.io",
"main": "n/a",
"scripts": {
"dev-next": "next",
"dev": "yarn dev-next",
"develop": "yarn dev-next",
"build": "next build",
"preexport": "npm run build",
"export": "next export",
"prestart": "npm run export",
"static-start": "serve out",
"start": "next start",
"format": "prettier --write \"src/**/*.{ts,tsx,md}\"",
"lint": "yarn type-check && tslint 'src/**/*.{ts,tsx}' -p tsconfig.json",
"test": "jest --passWithNoTests",
"test-watch": "jest --passWithNoTests --watch",
"type-check": "tsc",
"create-indices": "tsc --project ./indices/tsconfig.json --outDir ./indices/out && node ./indices/out/indices/createIndices.js",
"deploy": "yarn build && yarn export"
},
"dependencies": {
"@next/bundle-analyzer": "^9.4.4",
"@tinacms/api-git": "^0.29.0",
"@tinacms/git-client": "^0.29.0",
"@types/react-instantsearch-dom": "^5.2.6",
"@types/styled-components": "^4.4.2",
"airtable": "^0.9.0",
"algoliasearch": "^4.0.0",
"axios": "^0.19.2",
"btoa": "^1.2.1",
"cookie": "^0.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"email-validator": "^2.0.4",
"express": "^4.17.1",
"fast-glob": "^3.1.1",
"final-form": "^4.19.1",
"final-form-calculate": "^1.3.1",
"final-form-submit-listener": "^1.0.0",
"fs": "^0.0.1-security",
"github-slugger": "^1.2.1",
"gray-matter": "^4.0.2",
"html-parser": "^0.11.0",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^2.2.1",
"jsonp": "^0.2.1",
"markdown-toc": "^1.2.0",
"matter": "^0.2.0",
"moment": "^2.24.0",
"moment-locales-webpack-plugin": "^1.2.0",
"next": "^9.5.2",
"next-seo": "^4.1.0",
"next-svgr": "0.0.2",
"next-tinacms-github": "^0.29.0",
"next-tinacms-json": "^0.29.0",
"next-tinacms-markdown": "^0.29.0",
"node-fetch": "^2.6.1",
"polished": "^3.4.4",
"prop-types": "^15.7.2",
"qs": "^6.9.1",
"raw-loader": "^4.0.0",
"react": "^16.12.0",
"react-dismissible": "^1.1.3",
"react-dom": "^16.12.0",
"react-dropzone": "^10.2.1",
"react-final-form": "^6.3.5",
"react-gtm-module": "^2.0.8",
"react-helmet": "^5.2.1",
"react-instantsearch-dom": "^6.3.0",
"react-markdown": "^4.3.1",
"react-syntax-highlighter": "^12.2.1",
"react-textarea-autosize": "^7.1.2",
"react-tinacms-date": "^0.29.0",
"react-tinacms-editor": "^0.31.0-alpha.3",
"react-tinacms-github": "^0.31.0-alpha.3",
"react-tinacms-inline": "^0.31.0-alpha.3",
"remark": "^11.0.2",
"remark-parse": "^8.0.0",
"remark-shortcodes": "^0.3.1",
"serve": "11.2.0",
"strip-markdown": "^3.1.1",
"styled-components": "^4.4.1",
"tinacms": "^0.31.0-alpha.3",
"webpack": "^4.41.5"
},
"devDependencies": {
"@babel/plugin-syntax-jsx": "^7.10.4",
"@tinacms/webpack-helpers": "^0.29.0",
"@types/cookie": "^0.3.3",
"@types/glob": "^7.1.1",
"@types/jest": "^25.1.2",
"@types/js-cookie": "^2.2.4",
"@types/node": "^13.1.4",
"@types/react": "^16.9.17",
"@types/react-gtm-module": "^2.0.0",
"babel-plugin-styled-components": "^1.8.0",
"jest": "^25.1.0",
"prettier": "^1.18.2",
"ts-jest": "^25.2.0",
"tslint": "^5.18.0",
"tslint-config-kata": "^1.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.7.4"
}
}