-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 863 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": "nextus-directus",
"version": "1.0.0",
"description": "Nextus Directus backend.",
"main": "index.js",
"scripts": {
"bootstrap": "directus bootstrap",
"schema:snapshot": "directus schema snapshot ./snapshots/schema.yml",
"schema:apply": "directus schema apply ./snapshots/schema.yml",
"start": "directus start",
"dev:ext": "cross-env NODE_ENV=production directus start",
"dev": "nodemon --legacy-watch --exec directus start",
"directus": "directus",
"docker:up": "docker compose -f docker-dev.yml up -d",
"docker:down": "docker compose -f docker-dev.yml down"
},
"keywords": [],
"author": "luochuanyuewu",
"dependencies": {
"directus": "10.10.2",
"directus-extension-api-docs": "^1.8.1"
},
"license": "MIT",
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^3.1.0"
}
}