-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.26 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
{
"name": "manul-stack",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently -i --raw yarn:nexus:reflection yarn:next:dev",
"next:dev": "next dev",
"build": "nexus build && next build",
"start": "next start",
"lint": "yarn eslint .",
"lint:fix": "yarn lint --fix",
"test": "nexus build && jest",
"nexus:reflection": "nexus dev --reflection --entrypoint src/pages/api/graphql.ts",
"db:start": "docker run --detach --publish 5432:5432 -e POSTGRES_PASSWORD=postgres --name 'manul-stack' postgres:10.12",
"prisma:migrate:save": "prisma migrate save --experimental",
"prisma:migrate:up": "prisma migrate up --experimental",
"prisma:migrate:down": "prisma migrate down --experimental",
"prisma:migrate": "yarn prisma:migrate:save && yarn prisma:migrate:up",
"generate:types": "npx apollo codegen:generate --localSchemaFile=./api.graphql --target=typescript --includes=\"src/**/*.{tsx,ts}\" --tagName=gql --globalTypesFile=src/types/global-types.ts types",
"job:seed": "ts-node --project ./scripts/tsconfig.json scripts/seed",
"seed": "yarn job:seed",
"postinstall": "patch-package"
},
"dependencies": {
"@apollo/client": "^3.1.3",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@ra-data-prisma/backend": "^3.0.1",
"@ra-data-prisma/dataprovider": "^3.1.0",
"@react-page/editor": "^0.23.3",
"@react-page/plugins-slate": "^0.23.3",
"@types/bcryptjs": "^2.4.2",
"@types/styled-components": "^5.1.2",
"@types/uuid": "^8.3.0",
"accept-language-parser": "^1.5.0",
"apollo-upload-client": "^14.1.1",
"aws-sdk": "^2.734.0",
"bcryptjs": "^2.4.3",
"browser-image-resizer": "^2.1.3",
"dayjs": "^1.8.33",
"gql": "^1.1.2",
"minimist": "^1.2.5",
"next": "9.5.2",
"next-i18next": "^6.0.2",
"next-seo": "^4.7.3",
"next-server-context": "^1.0.0",
"next-with-apollo": "^5.1.0",
"nexus": "^0.26.1",
"nexus-plugin-jwt-auth": "^1.3.1",
"nexus-plugin-prisma": "^0.17.0",
"nexus-plugin-shield": "^0.2.0",
"patch-package": "^6.2.2",
"path": "^0.12.7",
"postinstall-postinstall": "^2.1.0",
"react": "16.13.1",
"react-admin": "^3.8.1",
"react-dom": "16.13.1",
"react-rectangle": "^1.3.3",
"styled-components": "^5.1.1",
"styled-reset": "^4.2.2",
"ts-node": "^8.10.2",
"uuid": "^8.3.0"
},
"devDependencies": {
"@panter/plop": "^2.0.1",
"@panter/plop-pack-manul": "^0.6.0",
"@types/accept-language-parser": "^1.5.1",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.0.27",
"@types/react": "^16.9.46",
"@types/styled-components": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"apollo": "^2.30.2",
"babel-jest": "^26.3.0",
"babel-plugin-styled-components": "^1.11.1",
"concurrently": "^5.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"jest": "^26.4.0",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
},
"resolutions": {
"graphql": "14.7.0"
}
}