-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.66 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
{
"name": "masks-front",
"version": "1.0.0",
"private": true,
"description": "The single page application with SSR based on next.js",
"keywords": [
"front",
"next.js",
"react",
"client",
"graphql",
"typescript",
"apollo",
"ssr",
"masks"
],
"license": "UNLICENSED",
"author": "Masks team",
"scripts": {
"analyze": "cross-env ANALYZE=true yarn build",
"build": "yarn codegen && next build",
"build-storybook": "build-storybook",
"codegen": "graphql-let",
"dev": "yarn codegen && next",
"format": "prettier --write \"**/*.{js,ts,tsx}\"",
"lint": "eslint . --ext ts --ext tsx --ext js",
"start": "next start",
"storybook": "start-storybook -p 6006",
"type-check": "tsc --pretty --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@apollo/react-common": "3.1.4",
"@apollo/react-components": "4.0.0",
"@apollo/react-hooks": "4.0.0",
"apisauce": "1.1.2",
"apollo-cache": "1.3.5",
"apollo-cache-inmemory": "1.6.6",
"apollo-client": "2.6.10",
"apollo-link": "1.2.14",
"apollo-link-http": "1.5.17",
"apollo-link-schema": "1.2.5",
"apollo-utilities": "1.3.4",
"formik": "2.1.5",
"graphql": "15.3.0",
"graphql-tag": "2.11.0",
"graphql-tools": "6.1.0",
"next": "9.5.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-styled-flexboxgrid": "3.2.1",
"styled-components": "5.1.1"
},
"devDependencies": {
"@babel/core": "7.11.1",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-decorators": "7.10.5",
"@graphql-codegen/cli": "1.17.8",
"@graphql-codegen/plugin-helpers": "1.17.8",
"@graphql-codegen/typescript": "1.17.9",
"@graphql-codegen/typescript-operations": "1.17.8",
"@graphql-codegen/typescript-react-apollo": "2.0.6",
"@graphql-codegen/typescript-resolvers": "1.17.9",
"@next/bundle-analyzer": "9.5.1",
"@storybook/addon-actions": "6.0.10",
"@storybook/addon-essentials": "6.0.10",
"@storybook/addon-links": "6.0.10",
"@storybook/react": "6.0.10",
"@types/node": "14.0.27",
"@types/react": "16.9.46",
"@types/react-dom": "16.9.8",
"@types/styled-components": "5.1.2",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"babel-loader": "8.1.0",
"babel-plugin-styled-components": "1.11.1",
"eslint": "7.7.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-react": "7.20.6",
"graphql-let": "0.15.3",
"husky": "4.2.5",
"lint-staged": "10.2.13",
"prettier": "2.1.1",
"react-is": "16.13.1",
"typescript": "3.9.7"
},
"engines": {
"node": "12.*"
}
}