-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.21 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": "exhibits-app-test-server",
"version": "0.0.1",
"description": "Temporary server to serve up exhibit data for client development. Client is independent of this server. This server api to be replaced with Elastic api for production",
"main": "src/app.js",
"scripts": {
"client-install": "cd client && npm install",
"start": "node src/exhibits-api.js",
"serve:server": "nodemon src/exhibits-api.js",
"serve:client": "cd client && npm run dev",
"dev": "concurrently \"npm run serve:server\" \"npm run serve:client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrynhart/exhibits-app"
},
"author": "Jeff Rynhart",
"license": "not public",
"dependencies": {
"@elastic/elasticsearch": "~8.13.0",
"axios": "^1.6.3",
"body-parser": "^1.20.0",
"concurrently": "^7.2.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"elasticsearch-sanitize": "^2.0.0",
"express": "^4.18.1",
"express-validator": "^7.0.1",
"fs": "^0.0.1-security",
"log4js": "^6.9.1",
"util": "^0.12.5"
},
"devDependencies": {
"nodemon": "^2.0.18"
}
}