-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
44 lines (44 loc) · 1.49 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
{
"name": "@EcrituresNumeriques/stylo",
"private": true,
"version": "3.1.5",
"description": "Stylo est un éditeur de textes pour articles scientifiques en sciences humaines et sociales.",
"main": "graphql/app.js",
"directories": {
"doc": "docs"
},
"engines": {
"node": ">=18",
"npm": ">=10"
},
"scripts": {
"dev": "DOTENV_CONFIG_PATH=.env node -r dotenv/config ./node_modules/.bin/concurrently 'npm:dev:*'",
"dev:front": "./front/node_modules/.bin/vite ./front",
"predev:graphql": "DOTENV_CONFIG_PATH=.env node -r dotenv/config ./graphql/node_modules/.bin/db-migrate up --migrations-dir ./graphql/migrations",
"dev:graphql": "node --watch ./graphql/app.js --watch",
"dev:export": "node --watch ./export/src/app.js --watch",
"start": "DOTENV_CONFIG_PATH=.env node -r dotenv/config ./node_modules/.bin/concurrently 'npm:start:*'",
"start:front": "./front/node_modules/.bin/vite build ./front",
"start:graphql": "node --watch ./graphql/app.js",
"start:export": "node --watch ./export/src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EcrituresNumeriques/stylo.git"
},
"keywords": [],
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/EcrituresNumeriques/stylo/issues"
},
"homepage": "https://github.com/EcrituresNumeriques/stylo#readme",
"devDependencies": {
"concurrently": "^7.6.0",
"dotenv": "^16.0.3"
},
"volta": {
"node": "18.20.4",
"npm": "10.9.0"
}
}