-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.84 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.84 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
{
"name": "strapi",
"private": true,
"version": "0.1.0",
"description": "Backend CMS for COTE",
"dependencies": {
"@_sh/strapi-plugin-ckeditor": "^2.0.3",
"@strapi-newsletter/strapi": "^0.1.2",
"@strapi/plugin-color-picker": "^4.6.2",
"@strapi/plugin-documentation": "^4.6.2",
"@strapi/plugin-graphql": "^4.6.2",
"@strapi/plugin-i18n": "^4.6.2",
"@strapi/plugin-seo": "^1.8.0",
"@strapi/plugin-users-permissions": "^4.7.1",
"@strapi/provider-email-nodemailer": "^4.6.2",
"@strapi/strapi": "^4.6.2",
"@webbio/strapi-plugin-scheduler": "^0.1.3",
"jsonwebtoken": "^9.0.0",
"lodash.set": "^4.3.2",
"passport-azure-ad-oauth2": "^0.0.4",
"passport-github2": "^0.1.12",
"patch-package": "^6.5.1",
"pg": "^8.8.0",
"postinstall-postinstall": "^2.1.0",
"sharp": "^0.31.3",
"strapi-blurhash": "^1.0.2",
"strapi-plugin-comments": "^2.2.6",
"strapi-plugin-email-designer": "^2.1.2",
"strapi-plugin-meilisearch": "^0.9.1",
"strapi-plugin-menus": "^1.3.1",
"strapi-plugin-multi-select": "^1.1.0",
"strapi-plugin-navigation": "^2.2.4",
"strapi-plugin-notes": "^1.0.1",
"strapi-plugin-plausible": "^1.0.5",
"strapi-plugin-preview-button": "^1.1.2",
"strapi-plugin-publisher": "^1.2.0",
"strapi-plugin-rest-cache": "^4.2.6",
"strapi-plugin-sitemap": "^2.0.9",
"strapi-plugin-slugify": "^2.3.2",
"strapi-plugin-vercel-deploy": "^1.4.0",
"strapi-provider-rest-cache-memory": "^4.2.6",
"strapi-provider-upload-azure-storage": "^3.1.3"
},
"scripts": {
"dev": "yarn develop-strapi",
"sstart": "NODE_ENV=production node node_modules/@strapi/strapi/bin/strapi.js start",
"develop-strapi": "strapi ts:generate-types --verbose -o ../../libs/types/src/lib && ts-to-zod ../../libs/types/src/lib/schemas.d.ts ../../libs/types/src/lib/validators.ts && strapi develop --watch-admin",
"develop-strapi-prod": "NODE_ENV=production yarn develop-strapi",
"start-strapi": "strapi start",
"bbuild": "strapi build",
"sstrapi": "strapi",
"ts-node": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\"",
"clean": "rm -rf .cache .tmp",
"develop": "strapi develop",
"start": "NODE_ENV=production node node_modules/@strapi/strapi/bin/strapi.js start",
"build": "NODE_ENV=production node node_modules/@strapi/strapi/bin/strapi.js build",
"strapi": "strapi",
"postinstall": "node node_modules/patch-package/index.js"
},
"author": {
"name": "Thomas F. K. Jorna",
"email": "hello@tefkah.com"
},
"strapi": {
"template": "@strapi/template-blog@^1.0.0",
"starter": "@strapi/starter-next-blog"
},
"engines": {
"node": ">=12.x.x <=16.x.x",
"npm": ">=6.0.0"
},
"license": "MIT",
"devDependencies": {
"@types/jsonwebtoken": "^9.0.1",
"ts-to-zod": "^2.0.1",
"typescript": "^4.9.5"
}
}