-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.51 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
{
"name": "sem-ops",
"version": "0.1.0-beta",
"description": "Playground and discovery tool for Linked Data",
"type": "module",
"dependencies": {
"@comunica/query-sparql-rdfjs": "^4.0.2",
"@ulb-darmstadt/shacl-form": "^1.6.5",
"awesomplete": "^1.1.7",
"codemirror": "^5.65.18",
"drawflow": "^0.0.60",
"force-graph": "^1.47.2",
"jszip": "^3.10.1",
"marked": "^15.0.6",
"n3": "^1.23.0",
"rdf-ext": "^2.5.2",
"shacl-engine": "^1.0.1",
"slugify": "^1.6.6",
"sparqljs": "^3.7.3"
},
"scripts": {
"clean": "rm -rf src/assets/",
"cloneRepo": "git clone https://github.com/Citizen-Knowledge-Graph/requirement-profiles src/assets/requirement-profiles",
"extractLatestRPcommit": "cd src/assets/requirement-profiles && git rev-parse HEAD > ../latest-rps-repo-commit.txt",
"cleanRepo": "rm -rf src/assets/requirement-profiles/.git*",
"listRpsDir": "cd src/assets/requirement-profiles && find . -type f > ../rps-dir.txt",
"listExamplesDir": "cd src/examples && find . -type f > ../assets/examples-dir.txt",
"extractLatestConsoleCommit": "git rev-parse HEAD > src/assets/latest-console-repo-commit.txt",
"bundle": "webpack",
"build": "npm run clean && npm run cloneRepo && npm run extractLatestRPcommit && npm run cleanRepo && npm run listRpsDir && npm run listExamplesDir && npm run extractLatestConsoleCommit && npm run bundle"
},
"devDependencies": {
"copy-webpack-plugin": "^12.0.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
}
}