-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.23 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
{
"name": "seacrifog",
"version": "0.0.1",
"description": "Source code for the the SEACRIFOG component (Work package 5.4) deliverable by SAEON",
"scripts": {
"clean-installed-files": "find . -name node_modules -type d -exec rm -rv {} + && find . -name package-lock.json -type f -delete",
"install-all": "npm-run-all -s install-api install-client",
"install-api": "npm --prefix api/ install",
"install-client": "npm --prefix client/ install",
"start": "npm-run-all -p start:api start:client",
"start:api": "npm --prefix api/ start",
"start:client": "npm --prefix client/ start",
"build-readme": "scripts/build-readme.sh",
"api-oncommit": "npm --prefix api/ run oncommit",
"client-oncommit": "npm --prefix client/ run oncommit",
"update-git-snapshot": "git add ."
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all -s build-readme api-oncommit client-oncommit update-git-snapshot"
}
},
"repository": {
"type": "git",
"url": "git@git-as-saeon:SAEON/seacrifog.git"
},
"keywords": [
"seacrifog",
"node.js",
"react.js",
"graphql"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"husky": "4.2.5",
"npm-run-all": "4.1.5"
}
}