mirror of
https://github.com/sasjs/server.git
synced 2025-12-10 19:34:34 +00:00
61 lines
1.9 KiB
JSON
61 lines
1.9 KiB
JSON
{
|
|
"name": "server",
|
|
"version": "0.0.1",
|
|
"description": "SASjs server",
|
|
"main": "./src/server.ts",
|
|
"scripts": {
|
|
"start": "nodemon ./src/server.ts",
|
|
"start:prod": "nodemon ./src/prod-server.ts",
|
|
"build": "rimraf build && tsc",
|
|
"semantic-release": "semantic-release -d",
|
|
"prepare": "[ -d .git ] && git config core.hooksPath ./.git-hooks || true",
|
|
"test": "mkdir -p tmp && jest --coverage",
|
|
"lint:fix": "npx prettier --write \"src/**/*.{ts,tsx,js,jsx,html,css,sass,less,yml,md,graphql}\"",
|
|
"lint": "npx prettier --check \"src/**/*.{ts,tsx,js,jsx,html,css,sass,less,yml,md,graphql}\"",
|
|
"package:lib": "npm run build && cp ./package.json build && cp README.md build && cd build && npm version \"5.0.0\" && npm pack"
|
|
},
|
|
"release": {
|
|
"branches": [
|
|
"master"
|
|
]
|
|
},
|
|
"author": "Analytium Ltd",
|
|
"dependencies": {
|
|
"@sasjs/utils": "^2.23.3",
|
|
"connect-ensure-login": "^0.1.1",
|
|
"ejs": "^3.1.6",
|
|
"express": "^4.17.1",
|
|
"express-session": "^1.17.1",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"passport": "^0.4.0",
|
|
"passport-azure-ad-oauth2": "0.0.4",
|
|
"passport-local": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/connect-ensure-login": "^0.1.6",
|
|
"@types/ejs": "^3.1.0",
|
|
"@types/express": "^4.17.12",
|
|
"@types/express-session": "^1.17.4",
|
|
"@types/jest": "^26.0.24",
|
|
"@types/jsonwebtoken": "^8.5.5",
|
|
"@types/node": "^15.12.2",
|
|
"@types/passport": "^1.0.7",
|
|
"@types/passport-local": "^1.0.34",
|
|
"@types/supertest": "^2.0.11",
|
|
"dotenv": "^10.0.0",
|
|
"jest": "^27.0.6",
|
|
"nodemon": "^2.0.7",
|
|
"prettier": "^2.3.1",
|
|
"rimraf": "^3.0.2",
|
|
"semantic-release": "^17.4.3",
|
|
"supertest": "^6.1.3",
|
|
"ts-jest": "^27.0.3",
|
|
"ts-node": "^10.0.0",
|
|
"typescript": "^4.3.2"
|
|
},
|
|
"configuration": {
|
|
"sasPath": "/opt/sas/sas9/SASHome/SASFoundation/9.4/sasexe/sas",
|
|
"sasJsPort": 5000
|
|
}
|
|
}
|