forked from Citizen-Knowledge-Graph/foerderfunke-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
19 lines (19 loc) · 1.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "foerderfunke-webapp",
"version": "0.0.1",
"description": "FörderFunke as a web app, the data only lives within the browser session locally",
"dependencies": {
"@foerderfunke/matching-engine": "^0.5.8",
"choices.js": "^10.2.0"
},
"scripts": {
"clean": "rm -rf public/assets/",
"cloneRepo": "git clone https://github.com/Citizen-Knowledge-Graph/requirement-profiles public/assets/requirement-profiles",
"extractCommit": "cd public/assets/requirement-profiles && git rev-parse HEAD > ../latest-rps-repo-commit.txt",
"cleanRepo": "rm -rf public/assets/requirement-profiles/.git*",
"copyBundle": "cp ./node_modules/@foerderfunke/matching-engine/dist/bundle.js public/assets/",
"copyDependencies": "cp ./node_modules/choices.js/public/assets/styles/choices.min.css public/assets/ && cp ./node_modules/choices.js/public/assets/scripts/choices.min.js public/assets/",
"listShaclFiles": "node buildShaclList.js",
"collectAssets": "npm run clean && npm run cloneRepo && npm run extractCommit && npm run cleanRepo && npm run copyBundle && npm run copyDependencies && npm run listShaclFiles"
}
}