forked from brianlovin/briOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.61 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.61 KB
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
112
113
114
{
"name": "brian-lovin-next",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint ./src/pages/* ./src/components/* ./src/api/* ./src/data/* ./src/graphql/* ./src/lib/* ./src/types/* -c .eslintrc.json --fix --ext ts,tsx",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"firebase": "cd src/firebase && firebase deploy --only functions && cd ../",
"generate": "graphql-codegen",
"generate:watch": "graphql-codegen --watch 'src/graphql/**/*.ts'",
"postinstall": "yarn generate"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@apollo/client": "^3.3.19",
"@apollo/link-error": "^2.0.0-beta.3",
"@apollo/link-schema": "^2.0.0-beta.3",
"@liveblocks/node": "^0.3.0",
"@liveblocks/react": "^0.6.0-beta.5",
"@tailwindcss/forms": "^0.3.2",
"@tailwindcss/typography": "^0.4.0",
"@tippy.js/react": "^3.1.1",
"@tryghost/content-api": "^1.5.6",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"apollo-server-micro": "^2.24.1",
"cheerio": "^1.0.0-rc.9",
"cookie": "^0.4.1",
"cryptr": "^6.0.2",
"date-fns": "^2.21.3",
"firebase-admin": "^9.8.0",
"graphql": "^15.5.0",
"graphql-tools": "^7.0.5",
"graphql-tools-fork": "^9.0.1",
"isomorphic-unfetch": "^3.1.0",
"next": "^10.2.2",
"next-seo": "^4.24.0",
"postmark": "^2.7.4",
"prismjs": "^1.23.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-linkify": "^1.0.0-alpha",
"react-markdown": "^6.0.2",
"react-visibility-sensor": "^5.1.1",
"rehype-parse": "^7.0.1",
"rehype-raw": "^5.1.0",
"rehype-remark": "^8.0.0",
"rehype-sanitize": "^4.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"remark-stringify": "^9.0.1",
"remove-markdown": "^0.3.0",
"string-replace-to-array": "^1.0.3",
"styled-components": "^4.4.1",
"timeago.js": "^4.0.2",
"unified": "^9.2.1",
"unified-stream": "^1.0.6"
},
"devDependencies": {
"@ardatan/graphql-tools": "^4.1.0",
"@bahmutov/add-typescript-to-cypress": "^2.1.2",
"@cypress/webpack-preprocessor": "^4.1.5",
"@fullhuman/postcss-purgecss": "^4.0.3",
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "^1.21.4",
"@graphql-codegen/typescript": "^1.22.0",
"@graphql-codegen/typescript-operations": "^1.17.16",
"@graphql-codegen/typescript-react-apollo": "^2.2.4",
"@testing-library/cypress": "^7.0.6",
"@types/chai": "^4.2.18",
"@types/jest": "^26.0.23",
"@types/mocha": "^8.2.2",
"@types/node": "^15.3.1",
"@types/react": "^17.0.6",
"@typescript-eslint/parser": "^4.24.0",
"autoprefixer": "^10.2.5",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.12.0",
"cypress": "^7.3.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-mdx": "^1.13.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"now-env": "^3.2.0",
"postcss": "^8.3.0",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.0",
"prettier-eslint": "^12.0.0",
"stylelint-config-recommended": "^5.0.0",
"tailwindcss": "^2.1.2",
"typescript": "^4.2.4",
"typescript-eslint-parser": "^22.0.0",
"webpack": "^4.46.0"
},
"lint-staged": {
"*.+(ts|tsx)": [
"eslint --fix",
"prettier --write"
]
},
"pre-commit": "lint:staged && generate",
"license": "MIT"
}