-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.85 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
{
"name": "patrician",
"version": "0.2.0-canary.0",
"private": true,
"author": "Patrician Team",
"scripts": {
"build": "next build",
"build:docs": "mkdocs build",
"dev": "next dev -p 8900",
"generate": "apollo client:codegen --endpoint http://localhost:8912/graphql --target typescript --includes=\"graphql/**/*.graphql\" --outputFlat",
"lint": "eslint './**/*.{js,ts,tsx}' --fix",
"prettier": "prettier \"./**/*.{js,ts,tsx}\" --write",
"start": "next start",
"start:docs": "mkdocs serve",
"test": "jest --verbose --coverage --passWithNoTests",
"test:watch": "jest --watch"
},
"dependencies": {
"@apollo/client": "^3.0.0-beta.39",
"@apollo/react-ssr": "^3.1.3",
"@material-ui/core": "^4.9.10",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.3.5",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.9.0",
"@types/react": "^16.9.23",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"graphql-code-generator": "^0.18.2",
"graphql-codegen-typescript-client": "0.18.2",
"graphql-codegen-typescript-common": "0.18.2",
"graphql-codegen-typescript-react-apollo": "0.18.2",
"husky": "^4.2.5",
"jest": "^25.4.0",
"lint-staged": "^10.1.7",
"prettier": "^2.0.5",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc -p ./tsconfig.json && yarn test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/patricianapp/patrician.git"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/patricianapp/patrician/issues"
},
"homepage": "https://patrician.app"
}