mirror of
https://github.com/sasjs/server.git
synced 2025-12-10 11:24:35 +00:00
26 lines
635 B
JSON
26 lines
635 B
JSON
{
|
|
"name": "server",
|
|
"version": "0.0.1",
|
|
"description": "SASjs server",
|
|
"main": "./src/index.ts",
|
|
"scripts": {
|
|
"start": "nodemon ./src/index.ts",
|
|
"build": "tsc --project ./",
|
|
"semantic-release": "semantic-release -d",
|
|
"postinstall": "[ -d .git ] && git config core.hooksPath ./.git-hooks || true"
|
|
},
|
|
"author": "Analytium",
|
|
"dependencies": {
|
|
"express": "^4.17.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.12",
|
|
"@types/node": "^15.12.2",
|
|
"nodemon": "^2.0.7",
|
|
"prettier": "^2.3.1",
|
|
"semantic-release": "^17.4.3",
|
|
"ts-node": "^10.0.0",
|
|
"typescript": "^4.3.2"
|
|
}
|
|
}
|