-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.31 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
{
"name": "typescript-nextjs-graphql-boilerplate",
"version": "0.0.1",
"description": "A Typescript Next.js implementation with a heavy focus on Apollo GraphQL integration.",
"main": "server/index.ts",
"scripts": {
"postinstall": "cp -n .env.example .env || true",
"generate": "gql-gen",
"generate:watch": "nodemon --watch \"./**/*.graphql\" -e graphql --exec yarn generate",
"dev": "yarn generate && concurrently \"yarn generate:watch\" \"yarn start:server:watch\"",
"build": "yarn generate && next build && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node .next/production-server/index.js",
"start:server:watch": "nodemon -e ts server/index.ts",
"analyse:server": "BUNDLE_ANALYZE=server yarn build",
"analyse:browser": "BUNDLE_ANALYZE=browser yarn build",
"analyse:all": "BUNDLE_ANALYZE=both yarn build",
"format:ts": "prettier --write \"**/*.{ts,tsx}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"keywords": [],
"author": "Jack Chapple",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.2.2",
"@fortawesome/fontawesome-svg-core": "^1.2.9",
"@fortawesome/free-solid-svg-icons": "^5.6.0",
"@fortawesome/react-fontawesome": "^0.1.3",
"@loona/react": "^1.0.0",
"@weco/next-plugin-transpile-modules": "^0.0.2",
"@zeit/next-bundle-analyzer": "^0.1.2",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"apollo-boost": "^0.1.22",
"apollo-cache": "1.1.21",
"apollo-cache-inmemory": "1.3.11",
"apollo-client": "^2.4.7",
"apollo-link": "^1.2.4",
"apollo-link-context": "^1.0.10",
"apollo-link-state": "^0.4.2",
"babel-plugin-module-resolver": "^3.1.1",
"bulma": "^0.7.2",
"cookie": "^0.3.1",
"graphql": "^14.0.2",
"graphql-code-generator": "^0.14.5",
"graphql-codegen-typescript-client": "^0.14.5",
"graphql-codegen-typescript-common": "^0.14.5",
"graphql-codegen-typescript-react-apollo": "^0.14.5",
"graphql-codegen-typescript-server": "^0.14.5",
"graphql-tag": "^2.10.0",
"isomorphic-unfetch": "^3.0.0",
"lodash-es": "^4.17.11",
"next": "^7.0.2",
"next-compose-plugins": "^2.1.1",
"next-nprogress": "^1.3.0",
"next-routes": "^1.4.2",
"node-sass": "^4.11.0",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-apollo": "^2.3.1",
"react-apollo-network-status": "^1.1.0",
"react-bulma-components": "jchapple/react-bulma-components#dev-jack-20181209-build",
"react-dom": "^16.6.3",
"react-select": "^2.1.2",
"styled-jsx": "^3.1.2",
"sw-precache-webpack-plugin": "^0.11.5",
"typescript": "^3.2.2",
"webpack": "4.20.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-decorators": "^7.2.2",
"@types/cookie": "^0.3.2",
"@types/lodash-es": "^4.17.1",
"@types/next": "^7.0.5",
"@types/node": "^10.12.12",
"@types/react-dom": "^16.0.11",
"@types/react-select": "^2.0.10",
"concurrently": "^4.1.0",
"dotenv": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^0.5.2",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"nodemon": "^1.18.9",
"prettier": "1.15.3",
"ts-node": "^7.0.1"
}
}