-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.61 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.61 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
{
"name": "@open-source-bazaar/org-server",
"version": "1.0.0",
"description": "Data Server scaffold for all kinds of Organizations, built on Strapi",
"private": true,
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0"
},
"dependencies": {
"@arshiash80/strapi-plugin-iconhub": "^1.0.2",
"@ckeditor/strapi-plugin-ckeditor": "^1.1.1",
"@strapi/plugin-cloud": "~5.16.0",
"@strapi/plugin-color-picker": "~5.16.0",
"@strapi/plugin-documentation": "~5.16.0",
"@strapi/plugin-users-permissions": "~5.16.0",
"@strapi/strapi": "~5.16.0",
"better-sqlite3": "^11.10.0",
"cross-env": "^7.0.3",
"pg": "^8.16.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1",
"strapi-location-picker": "^0.0.1",
"strapi-plugin-multi-select": "^2.1.1",
"strapi-provider-cloudflare-r2": "^0.3.0",
"styled-components": "^6.1.19"
},
"devDependencies": {
"@types/node": "^22.15.32",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"swagger-typescript-api": "^13.2.3",
"tsx": "^4.20.3",
"typescript": "~5.8.3",
"zx": "^8.5.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"@tailwindcss/oxide",
"better-sqlite3",
"core-js-pure",
"esbuild",
"sharp"
]
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.{md,json,yml,js,mjs,ts,tsx}": "prettier --write"
},
"scripts": {
"prepare": "(husky || true) && (cp -u .env.example .env || true)",
"test": "lint-staged",
"upgrade": "npx @strapi/upgrade latest",
"upgrade:dry": "npx @strapi/upgrade latest --dry",
"strapi": "strapi",
"clean": "rm -rf .cache/ .strapi/ dist/",
"develop": "strapi develop",
"make-type": "cd src/extensions/documentation/ && tsx make-type documentation/1.0.0/full_documentation.json ../../../types/client/",
"build-type": "rm -rf types/client/ && npm run make-type",
"build": "npm run clean && strapi ts:generate-types && cross-env NODE_ENV=production strapi build",
"start": "cross-env NODE_ENV=production strapi start",
"pack-image": "docker build -t open-source-bazaar/orgserver .",
"database": "docker rm -f postgres-server && docker run --name postgres-server -v ./.data:/var/lib/postgresql/data/ -e POSTGRES_PASSWORD=tobemodified -p 5432:5432 -d postgres",
"container": "docker rm -f strapi-server && docker run --name strapi-server -p 1337:1337 -d open-source-bazaar/orgserver",
"deploy": "strapi deploy",
"console": "strapi console"
}
}