-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.96 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
{
"private": true,
"name": "bayswaterpc-superplate-blog",
"version": "0.1.0",
"scripts": {
"apollo:download-schema": "apollo client:download-schema schema.graphql",
"apollo:generate-types": "rm -rf __generated__ && apollo client:codegen --target typescript --outputFlat && graphql-codegen",
"apollo:sync": "npm run apollo:download-schema && npm run apollo:generate-types",
"build": "next build",
"build:analyze": "npx cross-env ANALYZE=true yarn build",
"codegen:generate": "graphql-codegen",
"cypress:open": "cypress open",
"cypress:run": "cypress run --config video=false",
"cypress:test": "start-server-and-test start http://localhost:3000 cypress:run",
"dev": "next dev",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"start": "next start",
"svgr": "npx @svgr/cli -d src/components/icons --ignore-existing --icon --typescript public/icons",
"test": "jest -c test/jest.config.js",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\""
},
"dependencies": {
"@apollo/client": "^3.3.7",
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.1.4",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@next/bundle-analyzer": "^11.1.2",
"@types/jest": "^27.0.1",
"eslint-plugin-react-hooks": "^4.2.0",
"framer-motion": "^3.2.1",
"graphql": "^15.4.0",
"graphql-request": "^3.4.0",
"mailgo": "^0.12.2",
"mobx": "^6.0.4",
"mobx-react": "^7.0.5",
"mobx-state-tree": "^5.0.1",
"next": "10.2.0",
"next-compose-plugins": "^2.2.1",
"next-i18next": "^7.0.1",
"prettier": "^2.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.2.0",
"react-images": "^1.2.0-beta.7",
"react-photo-gallery": "^8.0.0",
"react-query": "^3.5.16",
"sass": "^1.32.5"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.20.0",
"@graphql-codegen/typescript": "^1.20.0",
"@graphql-codegen/typescript-operations": "^1.17.13",
"@svgr/cli": "^5.5.0",
"@testing-library/react": "^11.2.3",
"@testing-library/react-hooks": "^5.0.0",
"@types/node": "^14.14.13",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"apollo": "^2.32.1",
"cypress": "^6.2.1",
"dotenv": "^8.2.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"isomorphic-unfetch": "^3.1.0",
"jest": "^26.6.3",
"nock": "^13.0.6",
"prettier-package-json": "^2.6.0",
"start-server-and-test": "^1.11.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}