mirror of
https://github.com/sasjs/server.git
synced 2025-12-10 19:34:34 +00:00
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "api",
|
|
"version": "0.0.1",
|
|
"description": "Api of 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 && mkdir -p ../web/build && jest --coverage"
|
|
},
|
|
"release": {
|
|
"branches": [
|
|
"master"
|
|
]
|
|
},
|
|
"author": "Analytium Ltd",
|
|
"dependencies": {
|
|
"@sasjs/utils": "^2.23.3",
|
|
"express": "^4.17.1",
|
|
"multer": "^1.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.12",
|
|
"@types/jest": "^26.0.24",
|
|
"@types/multer": "^1.4.7",
|
|
"@types/node": "^15.12.2",
|
|
"@types/supertest": "^2.0.11",
|
|
"jest": "^27.0.6",
|
|
"nodemon": "^2.0.7",
|
|
"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/sas",
|
|
"sasJsPort": 5005
|
|
}
|
|
}
|