-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 4.88 KB
/
Copy pathpackage.json
File metadata and controls
142 lines (142 loc) · 4.88 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "journaly",
"version": "1.0.0",
"engines": {
"node": "16.x"
},
"description": "A foreign-language journaling application.",
"repository": {
"type": "git",
"url": "git://github.com/Journaly/journaly.git"
},
"author": "Journaly",
"license": "ISC",
"bugs": {
"url": "https://github.com/Journaly/journaly/issues"
},
"main": "index.js",
"scripts": {
"build:nexus": "cross-env NEXUS_REFLECTION=1 ts-node -r tsconfig-paths/register -P tsconfig-base.json -T resolvers/index.ts",
"build:next": "next build",
"build": "npm run prisma:generate && npm run build:nexus && npm run build:next",
"codegen": "graphql-codegen --config codegen.yml",
"dev": "node server/index.js",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,md}'",
"start": "cross-env NODE_ENV=production node server/index.js",
"svgr": "node scripts/svgr.js",
"backfillMoosendSubscriberIds": "ts-node -r tsconfig-paths/register -P tsconfig-base.json scripts/backfillMoosendSubscriberIds.ts",
"grant-free-subscription": "ts-node -r tsconfig-paths/register -P tsconfig-base.json scripts/grant-free-subscription.ts",
"type-check": "tsc",
"db:snapshot": "SNAPSHOT_FILE=$(pwd)/snapshot.sql npm explore '@journaly/j-db-client' -- npm run db:snapshot",
"db:restore": "SNAPSHOT_FILE=$(pwd)/snapshot.sql npm explore '@journaly/j-db-client' -- npm run db:restore",
"db:seed": "SNAPSHOT_FILE=$(pwd)/seed.sql npm explore '@journaly/j-db-client' -- npm run db:restore",
"prisma:generate": "prisma generate",
"migrate:apply": "npm explore '@journaly/j-db-client' -- npm run migrate:apply",
"migrate:deploy": "npm explore '@journaly/j-db-client' -- npm run migrate:deploy",
"translations:topics:pull": "ts-node -r tsconfig-paths/register -P tsconfig-base.json scripts/pull-topic-translations.mjs",
"translations:topics:push": "ts-node -r tsconfig-paths/register -P tsconfig-base.json scripts/push-topic-translations.mjs"
},
"prisma": {
"schema": "node_modules/@journaly/j-db-client/prisma/schema.prisma"
},
"dependencies": {
"@apollo/client": "3.7.14",
"@journaly/j-db-client": "^13.19.1",
"@prisma/client": "^3.15.2",
"@stripe/react-stripe-js": "^1.2.2",
"@stripe/stripe-js": "^1.12.1",
"@types/bcryptjs": "^2.4.2",
"@types/diff": "^4.0.2",
"@types/escape-html": "^1.0.0",
"@types/jsonwebtoken": "^8.3.8",
"@types/node-fetch": "^2.5.12",
"@udecode/plate": "^20.3.2",
"apollo-server-micro": "^2.19.0",
"aws-sdk": "^2.737.0",
"bcryptjs": "^2.4.3",
"chroma-js": "^2.1.1",
"classnames": "^2.2.6",
"cookie": "^0.4.1",
"cross-env": "^7.0.3",
"date-fns": "^2.11.1",
"diff": "^4.0.2",
"dotenv": "^8.2.0",
"escape-html": "^1.0.3",
"eslint-config-next": "^13.3.4",
"graphql": "^15.4.0",
"graphql-ws": "^5.12.1",
"is-hotkey": "^0.1.6",
"is-url": "^1.2.4",
"isomorphic-unfetch": "^3.0.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.20",
"next": "^13.3.4",
"next-i18next": "^7.0.1",
"nexus": "^1.0.0",
"nexus-plugin-prisma": "^0.35.0",
"node-fetch": "^2.6.7",
"nprogress": "^0.2.0",
"query-string": "^7.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^5.7.2",
"react-markdown": "^7.0.0",
"react-toastify": "^6.0.8",
"reactjs-popup": "^2.0.4",
"remark-gfm": "^2.0.0",
"slate": "^0.91.4",
"slate-history": "^0.86.0",
"slate-hyperscript": "^0.77.0",
"slate-react": "^0.92.0",
"stripe": "^8.137.0",
"swot-node": "^2.0.173",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"unsplash-js": "^7.0.15",
"uuid": "^8.3.2",
"xss": "^1.0.7"
},
"devDependencies": {
"@graphql-codegen/cli": "^3.3.1",
"@graphql-codegen/typescript": "^3.0.4",
"@graphql-codegen/typescript-operations": "^3.0.4",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@next/bundle-analyzer": "^10.0.5",
"@svgr/core": "^5.4.0",
"@svgr/plugin-jsx": "^5.4.0",
"@svgr/plugin-prettier": "^5.4.0",
"@svgr/plugin-svgo": "^5.4.0",
"@types/chroma-js": "^2.1.3",
"@types/classnames": "^2.2.10",
"@types/cookie": "^0.4.0",
"@types/express": "^4.17.11",
"@types/is-url": "^1.2.28",
"@types/node": "^14.14.31",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.2.1",
"@types/react-dom": "^18.2.2",
"@types/uuid": "^8.3.0",
"cli-progress": "^3.9.0",
"copy-webpack-plugin": "^9.0.1",
"csv-reader": "^1.0.7",
"csv-writer": "^1.6.0",
"express": "^4.17.1",
"jsonc-parser": "^3.0.0",
"prettier": "^2.0.1",
"prisma": "3.15.2",
"prompts": "^2.3.2",
"typescript": "^4.5.2",
"yargs": "^16.2.0"
},
"overrides": {
"@journaly/j-db-client": {
"@prisma/client": "^3.15.2"
},
"nexus-plugin-prisma": {
"@prisma/client": "^3.15.2"
},
"react-hook-form": {
"react": ">=16"
}
}
}