-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "egov",
"private": true,
"author": "Guido García (@palmerabollo)",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna run clean",
"lint": "lerna run lint",
"postinstall": "npm run bootstrap",
"publish": "lerna publish --skip-git --skip-npm --force-publish='*'",
"start:api-server": "node packages/egov-api-server/lib",
"test": "lerna run test",
"watch": "npm-run-all --parallel watch:*",
"watch:api-server": "lerna exec --scope @egov/api-server -- npm run watch",
"watch:packages": "lerna exec --ignore @egov/api-server -- npm run watch",
"deploy": "npm-run-all --parallel deploy:*",
"deploy:adapters": "bin/deploy-adapters"
},
"engines": {
"node": "16"
},
"keywords": [
"egov",
"api",
"graphql",
"spain",
"data",
"opendata"
],
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@types/node": "^16.11.45",
"lerna": "^5.1.8",
"npm-run-all": "^4.1.5",
"typescript": "^4.7.4"
}
}