-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.03 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": "sparqlist",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node --experimental-modules index.mjs",
"build": "cd frontend && npm ci --production=false && npm run build -- --environment=production --output-path=../public",
"watch": "nodemon --exec npm start --ignore frontend/",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@types/node": "^20.11.25",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0"
},
"dependencies": {
"@playwright/test": "^1.42.1",
"accepts": "^1.3.8",
"body-parser": "^1.20.2",
"commonmark": "^0.31.0",
"connect-timeout": "^1.9.0",
"express": "^4.18.3",
"express-promise-router": "^4.1.1",
"fontoxpath": "^3.30.3",
"handlebars": "^4.7.8",
"morgan": "^1.10.0",
"node-fetch": "^3.3.2",
"parse5": "^7.1.2",
"slimdom-sax-parser": "^1.5.3",
"type-is": "^1.6.18",
"xmlserializer": "^0.6.1"
},
"engines": {
"node": ">=14"
}
}