-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.32 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
{
"name": "bookchaos",
"version": "1.0.0",
"description": "Book writing app",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"studio": "npx prisma studio --experimental",
"generate": "npm -s run generate:prisma && npm -s run generate:nexus",
"generate:prisma": "prisma generate",
"generate:nexus": "ts-node --transpile-only -P nexus.tsconfig.json src/graphql/schema",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"postinstall": "npm run generate"
},
"keywords": [],
"author": "Taras Protchenko <[email protected]>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@apollo/react-hooks": "3.1.5",
"@apollo/react-ssr": "3.1.5",
"@hapi/iron": "^6.0.0",
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@nexus/schema": "0.13.1",
"apollo-boost": "0.4.9",
"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.14.1",
"clsx": "^1.1.1",
"cookie": "^0.4.1",
"dayjs": "^1.8.28",
"escape-html": "^1.0.3",
"formik": "^2.1.4",
"framer-motion": "^1.11.1",
"graphql": "^15.0.0",
"graphql-iso-date": "3.6.1",
"graphql-middleware": "^4.0.2",
"graphql-shield": "^7.3.2",
"graphql-tag": "2.10.3",
"md5": "^2.2.1",
"next": "9.4.4",
"nexus-plugin-prisma": "^0.16.1",
"notistack": "^0.9.16",
"qs": "^6.9.4",
"react": "16.13.1",
"react-apollo": "3.1.5",
"react-dom": "16.13.1",
"slate": "^0.58.3",
"slate-react": "^0.58.3",
"yup": "^0.29.1"
},
"devDependencies": {
"@types/node": "13.13.9",
"@types/react": "16.9.35",
"@types/slate-react": "^0.22.9",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.7",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "3.8.3"
}
}