-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 2.27 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
{
"name": "serverless-headless-cms",
"version": "0.1.0",
"private": false,
"bin": {
"serverless-headless-cms": "./bin/deploy.mjs"
},
"scripts": {
"deploy": "./bin/deploy.mjs",
"dev": "next dev",
"build": "next build",
"build:export": "next build && next export",
"start": "next start",
"export": "next export"
},
"dependencies": {
"@chakra-ui/react": "^1.6.7",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"date-fns": "^2.23.0",
"firebase": "^8.10.0",
"framer-motion": "^4.1.17",
"next": "^11.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-firebase-hooks": "^3.0.4",
"react-firebaseui": "^5.0.2",
"react-hook-form": "^7.15.3",
"react-icons": "^4.2.0",
"react-quill": "^2.0.0-beta.4",
"rosetta": "^1.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^14.11.2",
"@types/react": "^16.9.49",
"@types/terser-webpack-plugin": "^4.2.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"firebase-tools": "^8.11.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"typescript": "^4.4.3",
"zx": "^4.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix --no-ignore",
"git add"
],
"**/*.{json}": [
"prettier --write",
"git add"
]
},
"description": "",
"main": "next.config.js",
"repository": {
"type": "git",
"url": "git+https://github.com/yamitzky/serverless-headless-cms.git"
},
"author": "Mitsuki Ogasahara <negiga@gmail.com> (https://github.com/yamitzky/serverless-headless-cms)",
"license": "MIT",
"bugs": {
"url": "https://github.com/yamitzky/serverless-headless-cms/issues"
},
"homepage": "https://github.com/yamitzky/serverless-headless-cms#readme"
}