-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
28 lines (28 loc) · 992 Bytes
/
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
{
"name": "directus-local",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "directus start",
"test": "echo \"Error: no test specified\" && exit 1",
"extensions": "cd extensions/directus-extension-app-bundle/ && npm i && npm run dev",
"build": "npm i && cd extensions/directus-extension-app-bundle/ && npm i && npm run build",
"snapshot": "directus schema snapshot ./snapshot.yaml",
"snapshot:apply": "directus schema apply ./snapshot.yaml",
"snapshot:apply:dry-run": "directus schema apply --dry-run ./snapshot.yaml",
"upgrade": "echo \"See notes in UPGRADE_NOTES.md and follow these docs https://docs.directus.io/self-hosted/upgrades-migrations.html\"",
"backup-db": "./tasks/pg_backup_db.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@directus/extensions-sdk": "^10.1.5",
"directus": "^10.6.0",
"pg": "^8.11.0"
},
"engines": {
"node": ">=18.0.0"
}
}