-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 1.3 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
{
"name": "foerderfunke-console",
"version": "0.0.1",
"description": "Playground and discovery tool for all Linked Data in the FörderFunke project",
"dependencies": {
"@comunica/query-sparql-rdfjs": "^4.0.2",
"litegraph.js": "^0.7.18",
"n3": "^1.23.0"
},
"scripts": {
"clean": "rm -rf public/assets/",
"cloneRepo": "git clone https://github.com/Citizen-Knowledge-Graph/requirement-profiles public/assets/requirement-profiles",
"extractLatestRPcommit": "cd public/assets/requirement-profiles && git rev-parse HEAD > ../latest-rps-repo-commit.txt",
"cleanRepo": "rm -rf public/assets/requirement-profiles/.git*",
"listRpsDir": "cd public/assets/requirement-profiles && ls -R > ../rps-dir.txt",
"extractLatestConsoleCommit": "git rev-parse HEAD > public/assets/latest-console-repo-commit.txt",
"bundle": "webpack",
"copyDependencies": "cp ./node_modules/litegraph.js/build/litegraph.min.js public/assets/ && cp ./node_modules/litegraph.js/css/litegraph.css public/assets/",
"collectAssets": "npm run clean && npm run cloneRepo && npm run extractLatestRPcommit && npm run cleanRepo && npm run listRpsDir && npm run extractLatestConsoleCommit && npm run bundle && npm run copyDependencies"
},
"devDependencies": {
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
}
}