-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.01 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.01 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
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
{
"name": "xtech-blog",
"version": "2.0.0",
"scripts": {
"dev": "next",
"prebuild": "yarn -s gen",
"build": "next build",
"start": "next start",
"gen:prisma": "prisma generate",
"gen:nexus": "ts-node -P tsconfig.node.json --transpile-only apollo/schema",
"gen": "yarn -s run gen:prisma && yarn -s run gen:nexus",
"gen:graphql": "graphql-codegen",
"fix:env": "ts-node -P tsconfig.node.json ./scripts/fixDbEnv.ts",
"migrate:save": "prisma migrate save --name init --experimental",
"migrate:up": "prisma migrate up --experimental",
"studio": "prisma studio --experimental"
},
"lint-staged": {
"*": "yarn prettier --write"
},
"dependencies": {
"@apollo/react-common": "3.1.4",
"@apollo/react-hooks": "3.1.5",
"@apollo/react-ssr": "3.1.5",
"@iarna/toml": "^2.2.5",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/system": "^4.9.14",
"@mdx-js/loader": "^1.6.11",
"@next/mdx": "^9.4.4",
"@nexus/schema": "^0.14.0",
"@octokit/rest": "^18.0.1",
"@types/bcrypt": "^3.0.0",
"@types/cookie": "^0.4.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/uuid": "^7.0.3",
"apollo-cache-inmemory": "1.6.6",
"apollo-client": "2.6.10",
"apollo-link-http": "1.5.17",
"apollo-link-schema": "1.2.5",
"apollo-server-micro": "2.16.0",
"apollo-utilities": "^1.3.4",
"bcrypt": "3.0.7",
"clsx": "^1.1.1",
"cookie": "0.4.1",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"gitalk": "^1.6.2",
"graphql": "^15.3.0",
"graphql-tag": "^2.10.4",
"jsonwebtoken": "8.5.1",
"less": "^3.12.2",
"mdast-util-toc": "^5.0.3",
"moment": "^2.27.0",
"next": "latest",
"nexus-plugin-prisma": "^0.16.1",
"prop-types": "^15.7.2",
"react": "^16.7.0",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"rehype-highlight": "^4.0.0",
"rehype-react": "^6.0.0",
"rehype-toc": "^3.0.2",
"remark-parse": "^8.0.3",
"remark-rehype": "^7.0.0",
"remark-slug": "^6.0.0",
"sqlite3": "^5.0.0",
"tempy": "^0.6.0",
"unified": "^9.0.0",
"uuid": "8.2.0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@graphql-codegen/cli": "^1.17.0",
"@graphql-codegen/typescript": "^1.17.0",
"@graphql-codegen/typescript-operations": "^1.17.0",
"@graphql-codegen/typescript-react-apollo": "^1.17.0",
"@types/lodash": "^4.14.157",
"@types/react": "^16.9.43",
"@types/react-helmet": "^6.0.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"typescript-plugin-css-modules": "^2.4.0"
},
"optionalDependencies": {
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
}
}