-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
112 lines (112 loc) · 4.16 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
{
"name": "@atheros/next-react-graphql-apollo",
"version": "1.0.0",
"description": "Starter kit for creating high performance React + GraphQL websites with Next.js",
"main": "server/index.ts",
"author": "[email protected]",
"scripts": {
"test": "NODE_ENV=test CUSTOM_ENV=local jest",
"test:watch": "jest --watch",
"dev": "NODE_ENV=development CUSTOM_ENV=local nodemon",
"transpile:server": "tsc --project tsconfig.server.json",
"build:production": "NODE_ENV=production CUSTOM_ENV=production next build && npm run transpile:server",
"build:staging": "NODE_ENV=production CUSTOM_ENV=staging next build && npm run transpile:server",
"build:local": "NODE_ENV=production CUSTOM_ENV=local next build && npm run transpile:server",
"gen:schema": "graphql-codegen",
"start:staging": "NODE_ENV=production CUSTOM_ENV=staging node dist/server/index.js --expose-http2 ",
"start:production": "NODE_ENV=production CUSTOM_ENV=production node dist/server/index.js --expose-http2 ",
"start:local": "NODE_ENV=production CUSTOM_ENV=local node dist/server/index.js --expose-http2 ",
"eslint": "eslint . --ignore-path .gitignore",
"eslint:fix": "eslint . --fix --ignore-path .gitignore",
"build:analyze": "ANALYZE=true NODE_ENV=production CUSTOM_ENV=production next build && tsc --project tsconfig.server.json"
},
"license": "MIT",
"engines": {
"node": ">=10.0.0",
"npm": ">6"
},
"dependencies": {
"@apollo/react-components": "^3.1.3",
"@apollo/react-hoc": "^3.1.3",
"@apollo/react-hooks": "^3.1.3",
"@apollo/react-ssr": "^3.1.3",
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.7",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link-http": "^1.5.16",
"apollo-server-express": "^2.9.11",
"classnames": "^2.2.6",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"dotenv-webpack": "^1.7.0",
"express": "^4.17.1",
"formik": "^2.0.4",
"helmet": "^3.21.2",
"isomorphic-unfetch": "^3.0.0",
"lodash.get": "^4.4.2",
"next": "^9.1.4",
"next-offline": "^4.0.6",
"next-seo": "^3.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-lazyload": "^2.6.5",
"react-spring": "^8.0.27",
"uuid": "^3.3.3",
"webfontloader": "^1.6.28",
"yup": "^0.27.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.8.3",
"@graphql-codegen/typescript-operations": "^1.8.3",
"@graphql-codegen/typescript-resolvers": "^1.8.3",
"@next/bundle-analyzer": "^9.1.4",
"@types/compression": "^1.0.1",
"@types/google.analytics": "0.0.40",
"@types/helmet": "0.0.45",
"@types/jest": "^24.0.23",
"@types/lodash": "^4.14.149",
"@types/lodash.get": "^4.4.6",
"@types/node": "^12.12.11",
"@types/react-lazyload": "^2.6.0",
"@types/react-test-renderer": "^16.9.1",
"@types/uuid": "^3.4.6",
"@types/webfontloader": "^1.6.29",
"@types/yup": "^0.26.24",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"@zeit/next-sass": "1.0.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.3",
"babel-preset-airbnb": "^4.4.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-security": "^1.4.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-optipng": "^7.1.0",
"jest": "24.9.0",
"mem": "^6.0.0",
"next-compose-plugins": "^2.2.0",
"next-optimized-images": "^2.5.4",
"next-plugin-graphql": "^0.0.2",
"node-sass": "^4.13.0",
"nodemon": "^2.0.1",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"react-test-renderer": "^16.12.0",
"responsive-loader": "^1.2.0",
"sharp": "^0.23.3",
"sw-precache-webpack-plugin": "^0.11.5",
"ts-node": "^8.5.2",
"typescript": "^3.7.2",
"webp-loader": "^0.5.0"
}
}