-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.34 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
{
"name": "odop-server",
"version": "0.0.0",
"description": "Open Design Optimization Platform (ODOP) Server",
"main": "server.js",
"engines": {
"node": "20.x"
},
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"heroku-postbuild": "cd client && npm install && npm run build && harp docs build/docs && cd .. && node ./scripts/build_index.js client/build/docs",
"test": "mocha --timeout 10000",
"coverage": "nyc --reporter=html node_modules/mocha/bin/_mocha --timeout 10000",
"showcoverage": "open coverage/index.html",
"harp-compile": "cd client && harp docs public/docs && cd .. && node ./scripts/build_index.js client/public/docs",
"harp-server": "cd client && harp . --port 8080"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thegrumpys/odop.git"
},
"author": "thegrumpys",
"license": "MIT",
"bugs": {
"url": "https://github.com/thegrumpys/odop/issues"
},
"homepage": ".",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cheerio": "^1.0.0-rc.10",
"harp": "^0.41.2",
"mocha": "^8.2.0",
"nodemon": "^1.19.4",
"nyc": "^15.0.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.17.1",
"lunr": "^2.3.9",
"node-mysql": "^0.4.2"
}
}