forked from brianlovin/briOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.89 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
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "paulowe",
"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.6",
"@apollo/link-error": "^2.0.0-beta.3",
"@apollo/link-schema": "^2.0.0-beta.3",
"@next/bundle-analyzer": "^10.0.4",
"@now/node": "^1.8.5",
"@sentry/browser": "^5.29.2",
"@sentry/node": "^5.29.2",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"@tippy.js/react": "^3.1.1",
"@tryghost/content-api": "^1.4.11",
"@zeit/next-source-maps": "0.0.4-canary.1",
"apollo-server-micro": "^2.19.1",
"cheerio": "^1.0.0-rc.5",
"cookie": "^0.4.1",
"cryptr": "^6.0.2",
"date-fns": "^2.16.1",
"firebase-admin": "^9.4.2",
"graphql": "^15.4.0",
"graphql-tools": "^7.0.2",
"graphql-tools-fork": "^9.0.1",
"isomorphic-unfetch": "^3.1.0",
"next": "^12.2.5",
"next-seo": "^4.17.0",
"postmark": "^2.6.1",
"prismjs": "^1.22.0",
"react": "^16.14.0",
"react-clipboard.js": "^2.0.16",
"react-dom": "^16.14.0",
"react-feather": "^2.0.9",
"react-flip-move": "^3.0.4",
"react-linkify": "^1.0.0-alpha",
"react-markdown": "^5.0.3",
"react-visibility-sensor": "^5.1.1",
"rebass": "^4.0.7",
"reflexbox": "^4.0.6",
"rehype-parse": "^7.0.1",
"rehype-remark": "^8.0.0",
"remark-stringify": "^9.0.1",
"remove-markdown": "^0.3.0",
"serve-favicon": "^2.5.0",
"string-replace-to-array": "^1.0.3",
"styled-components": "^4.4.1",
"terser": "^5.5.1",
"theme-ui": "^0.3.5",
"throttle-debounce": "^3.0.1",
"timeago.js": "^4.0.2",
"twilio": "^3.51.0",
"unified": "^9.2.0",
"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": "^3.1.3",
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "^1.20.0",
"@graphql-codegen/typescript": "^1.20.0",
"@graphql-codegen/typescript-operations": "^1.17.13",
"@graphql-codegen/typescript-react-apollo": "^2.2.1",
"@testing-library/cypress": "^7.0.3",
"@types/chai": "^4.2.14",
"@types/jest": "^26.0.19",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.17",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"autoprefixer": "^10.1.0",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.12.0",
"cypress": "6.2.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"now-env": "^3.2.0",
"postcss": "^8.2.2",
"postcss-import": "^14.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"stylelint-config-recommended": "^3.0.0",
"tailwindcss": "^2.0.2",
"tailwindcss-line-clamp": "^1.0.5",
"typescript": "^4.1.3",
"typescript-eslint-parser": "^22.0.0",
"webpack": "^4.44.2"
},
"lint-staged": {
"*.+(ts|tsx)": [
"eslint --fix",
"prettier --write"
]
},
"engines":{ "node": "14.19.3"},
"pre-commit": "lint:staged && generate",
"license": "MIT"
}