-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.52 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "recto",
"version": "1.0.0",
"description": "BIBFRAME Pilot User interface",
"main": "server.js",
"scripts": {
"test": "mocha --recursive --exit test",
"dev": "node .",
"local": "nodemon server.js",
"start": "sudo pm2 start server.js --name recto",
"stop": "sudo pm2 delete recto",
"startstaging": "sudo pm2 start server.js --name rectostaging",
"stopstaging": "sudo pm2 delete rectostaging",
"lint": "eslint server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lcnetdev/recto.git"
},
"author": "kirkhess",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/lcnetdev/recto/issues"
},
"homepage": "https://github.com/lcnetdev/recto#readme",
"dependencies": {
"body-parser": "^1.20.2",
"chai": "^4.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.19.2",
"express-http-proxy": "^0.11.0",
"http-proxy-middleware": "^1.0.6",
"ldpjs": "git+https://github.com/lcnetdev/ldpjs.git",
"lodash": "^4.17.20",
"node-fetch": "^2.6.7",
"passport": "^0.6.0",
"passport-http": "^0.3.0",
"rdf-translator": "^0.1.0",
"rdflib": "^0.14.1",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"saxon-js": "^2.6.0",
"short-uuid": "^3.1.1",
"supertest": "^4.0.2",
"underscore": "^1.12.1",
"xml": "^1.0.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-plugin-node": "^7.0.1",
"mocha": "^10.2.0",
"nodemon": "^3.1.3",
"supertest": "^4.0.2"
}
}