-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.55 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.55 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "sparql-proxy",
"version": "0.0.0",
"description": "",
"private": true,
"author": "",
"dependencies": {
"bootstrap": "^5.3.8",
"codemirror": "^5.65.21",
"cookie": "^1.1.1",
"cors": "^2.8.6",
"express": "^5.2.1",
"font-awesome": "^4.7.0",
"memcached": "^2.2.2",
"moment": "^2.30.1",
"morgan": "^1.10.1",
"multer": "^2.1.1",
"query-string": "^9.3.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"redis": "^5.11.0",
"rollup": "^4.59.0",
"sass": "^1.97.3",
"snappy": "^7.3.3",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"sparql-support": "^0.20.0",
"sparqljs": "^3.7.4",
"tsx": "^4.21.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@eslint/js": "^9.7.0",
"babel-loader": "^10.1.1",
"babel-regenerator-runtime": "^6.5.0",
"css-loader": "^7.1.4",
"eslint": "^9.7.0",
"eslint-plugin-react": "^7.37.5",
"file-loader": "^6.2.0",
"globals": "^17.4.0",
"html-webpack-plugin": "^5.6.6",
"sass-loader": "^16.0.7",
"style-loader": "^4.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1"
},
"scripts": {
"build": "webpack",
"start": "tsx src/server.mjs",
"lint": "eslint src/**/*.mjs client/**/*.jsx tests/**/*.js",
"test": "npm run lint && node --test tests/*.test.js"
},
"engines": {
"node": "24.x"
},
"type": "module"
}