-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.7 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.7 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
{
"name": "@tuxsudo/sidegig",
"version": "0.0.1",
"description": "NextJS side project starter kit",
"private": true,
"scripts": {
"precodegen.gql": "rm -f types/gql/*",
"codegen.gql": "apollo client:codegen --tagName=gql --outputFlat --localSchemaFile=server/graphql/schema.graphql --target=typescript --includes=\"**/*.tsx\" types/gql/",
"codegen.prisma": "prisma generate",
"codegen": "concurrently npm:codegen.*",
"migrations.stage": "prisma migrate dev --create-only --preview-feature",
"migrations.commit": "prisma migrate dev --preview-feature",
"dev.next": "next dev",
"dev.codegen": "apollo client:codegen --tagName=gql --outputFlat --localSchemaFile=server/graphql/schema.graphql --target=typescript --includes=\"**/*.tsx\" --watch types/gql/",
"dev": "concurrently npm:dev.*",
"dist": "next build",
"prestart": "prisma migrate deploy --preview-feature",
"start": "next start",
"test": "jest --watch",
"test.ci": "jest --ci",
"storybook": "start-storybook -p 6006",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js"
},
"keywords": [],
"author": "Jared Anderson <jared@tuxsudo.com>",
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.3.12",
"@prisma/client": "^2.16.1",
"@prisma/migrate": "^2.16.1",
"apollo-server-micro": "^2.21.2",
"bunyan": "^1.8.15",
"date-fns": "^2.19.0",
"deepmerge": "^4.2.2",
"fast-deep-equal": "^3.1.3",
"graphql": "^15.5.0",
"graphql-scalars": "^1.9.0",
"is-in-browser": "^2.0.0",
"next": "^10.0.6",
"next-auth": "^3.13.3",
"nexus": "^1.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/react": "^6.1.21",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/bunyan": "^1.8.6",
"@types/next-auth": "^3.7.4",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@types/styled-components": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"apollo": "^2.32.5",
"babel-jest": "^26.6.3",
"babel-plugin-styled-components": "^1.12.0",
"concurrently": "^6.0.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"prisma": "^2.16.1",
"react-test-renderer": "^17.0.1",
"typescript": "^4.1.3"
},
"engines": {
"node": "^14.0.0"
},
"resolutions": {
"graphql": "^15.0.0"
}
}