-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.27 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.27 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
{
"license": "UNLICENSED",
"scripts": {
"dev": "next dev",
"build": "next build",
"apollo:generate": "apollo codegen:generate --excludes='node_modules/*' --includes='**/*.tsx' --endpoint http://localhost:5000/graphql --target typescript --tagName gql --outputFlat queries --passthroughCustomScalars --customScalarsPrefix PZ",
"lint": "next lint",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"start": "next start",
"test": "jest",
"ci": "yarn prettier:check && yarn lint && yarn test && yarn build"
},
"dependencies": {
"@apollo/client": "3.4.15",
"classnames": "2.3.1",
"graphql": "15.6.0",
"next": "11.1.2",
"next-cookie": "2.7.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"recipe-parser": "https://github.com/plate0/recipe-parser#v0.3.2",
"slugify": "1.6.0"
},
"devDependencies": {
"@types/jest": "27.0.2",
"@types/node": "16.10.2",
"@types/react": "17.0.26",
"apollo": "2.33.6",
"autoprefixer": "10.3.6",
"babel-jest": "27.2.4",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"jest": "27.2.4",
"postcss": "8.3.8",
"prettier": "2.4.1",
"tailwindcss": "2.2.16",
"typescript": "4.4.3"
},
"packageManager": "yarn@3.0.2"
}