Files
skooner/server/package.json
Danny Ockilson cb8dd768af Install and configure cross-env
Allows ENV variable usage in npm scripts on windows dev machines
2020-08-19 04:46:00 -04:00

27 lines
621 B
JSON

{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env DEBUG_VERBOSE=true nodemon .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@kubernetes/client-node": "^0.8.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"http-proxy-middleware": "^0.19.1",
"openid-client": "^2.5.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"stream-to-string": "^1.2.0"
},
"devDependencies": {
"cross-env": "^7.0.2",
"nodemon": "^1.19.4"
}
}