-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
122 lines (122 loc) · 3.92 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
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
{
"name": "civicsignalblog",
"version": "0.1.13",
"private": true,
"author": "Code for Africa <[email protected]>",
"description": "This is the (temporary) CivicSignal blog",
"keywords": [
"civicsignal",
"next",
"next.js",
"react",
"mui"
],
"repository": {
"type": "git",
"url": "https://github.com/codeforafrica/ui.git",
"directory": "apps/civicsignalblog"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/codeforafrica/ui/issues"
},
"scripts": {
"build-server": "tsc --project tsconfig.server.json",
"build-next": "NEXT_BUILD=true pnpm build-server && NEXT_BUILD=true PAYLOAD_CONFIG_PATH=${PAYLOAD_CONFIG_PATH:-dist/payload.config.js} node dist/server.js",
"build-payload": "payload build",
"payload-migrate:create": "payload migrate:create",
"payload-migrate:status": "payload migrate:status",
"payload-migrate:up": "payload migrate",
"payload-migrate:down": "payload migrate:down",
"start": "PAYLOAD_CONFIG_PATH=${PAYLOAD_CONFIG_PATH:-dist/payload.config.js} NODE_ENV=${NODE_ENV:-production} node dist/server.js",
"dev": "NODE_OPTIONS='--inspect --conditions=dev' TS_NODE_PROJECT=tsconfig.server.json tsx server.ts",
"lint-check": "TIMING=1 eslint './'",
"lint": "TIMING=1 eslint --fix './'",
"jest": "jest",
"playwright": "npx playwright test",
"clean": "rm -rf .next .turbo build dist node_modules"
},
"dependencies": {
"@aws-sdk/client-s3": "catalog:",
"@aws-sdk/lib-storage": "catalog:",
"@commons-ui/core": "workspace:*",
"@commons-ui/next": "workspace:*",
"@commons-ui/payload": "workspace:*",
"@emotion/cache": "catalog:",
"@emotion/react": "catalog:",
"@emotion/server": "catalog:",
"@emotion/styled": "catalog:",
"@googlemaps/react-wrapper": "catalog:",
"@mui/material": "catalog:",
"@mui/utils": "catalog:",
"@next/env": "catalog:",
"@next/third-parties": "catalog:",
"@payloadcms/bundler-webpack": "catalog:",
"@payloadcms/db-mongodb": "catalog:",
"@payloadcms/live-preview": "catalog:",
"@payloadcms/live-preview-react": "catalog:",
"@payloadcms/plugin-cloud-storage": "catalog:",
"@payloadcms/plugin-nested-docs": "catalog:",
"@payloadcms/plugin-sentry": "catalog:",
"@payloadcms/plugin-seo": "catalog:",
"@payloadcms/richtext-slate": "catalog:",
"@sentry/nextjs": "catalog:",
"camelcase-keys": "catalog:",
"dotenv": "catalog:",
"express": "catalog:",
"fast-equals": "catalog:",
"js-yaml": "catalog:",
"jsdom": "catalog:",
"next": "catalog:",
"next-seo": "catalog:",
"nodemailer-sendgrid": "catalog:",
"payload": "catalog:",
"prop-types": "catalog:",
"qs": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"react-share": "catalog:",
"sharp": "catalog:",
"slate": "catalog:",
"swr": "catalog:"
},
"devDependencies": {
"@babel/core": "catalog:",
"@babel/preset-react": "catalog:",
"@commons-ui/testing-library": "workspace:*",
"@playwright/test": "catalog:",
"@svgr/webpack": "catalog:",
"@swc/core": "catalog:",
"@types/express": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"babel-jest": "catalog:",
"eslint": "catalog:",
"eslint-config-commons-ui": "workspace:*",
"eslint-import-resolver-typescript": "catalog:",
"eslint-import-resolver-webpack": "catalog:",
"eslint-plugin-import": "catalog:",
"identity-obj-proxy": "catalog:",
"jest": "catalog:",
"jest-config-commons-ui": "workspace:*",
"playwright-config-commons-ui": "workspace:*",
"prettier": "catalog:",
"react-test-renderer": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"webpack": "catalog:"
},
"engines": {
"node": "20.x"
},
"imports": {
"#civicsignalblog/*": {
"dev": [
"./src/*.js"
],
"default": [
"./dist/src/*.js"
]
}
}
}