-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.05 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
{
"name": "@mainwaring_dev/strapi",
"private": true,
"version": "2023.2.0",
"description": "A Strapi application",
"author": {
"name": "Joe Mainwaring <[email protected]>"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/theaccordance/mainwaring_dev.git"
},
"engines": {
"node": "20.10.0",
"npm": ">=6.0.0"
},
"strapi": {
"uuid": "2e778c71-e028-4724-be83-af4a4b2781c3"
},
"scripts": {
"build": "strapi build",
"build:digitalocean": "npm install --production=false --legacy-peer-deps && npm run build",
"deploy": "strapi build && strapi start",
"deploy:api": "strapi build && strapi start",
"develop": "strapi develop",
"generate:types": "strapi ts:generate-types",
"nuke": "rm -rf node_modules/*",
"op:betteruptime": "eval $(op signin) && op inject -i terraform/better-uptime/template.tfvars -o terraform/better-uptime/terraform.tfvars",
"op:cloudflare": "eval $(op signin) && op inject -i terraform/cloudflare/template.tfvars -o terraform/cloudflare/terraform.tfvars",
"op:env": "eval $(op signin) && op inject -i .env-template -o .env",
"op:gh-secrets": "eval $(op signin) && op inject -i terraform/gh-secrets/template.tfvars -o terraform/gh-secrets/terraform.tfvars",
"start": "strapi start",
"strapi": "strapi",
"test": "npx jest --passWithNoTests",
"test:coverage": "npx jest --coverage --passWithNoTests"
},
"dependencies": {
"@strapi/plugin-i18n": "^4.17.0",
"@strapi/plugin-users-permissions": "^4.17.0",
"@strapi/provider-upload-cloudinary": "^4.17.0",
"@strapi/strapi": "^4.17.0",
"axios": "^1.6.2",
"pg": "8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reselect": "^5.1.0",
"strapi-plugin-request-id": "^1.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@strapi/typings": "^4.13.3",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"prettier": "3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}