mirror of
https://github.com/sasjs/server.git
synced 2025-12-08 02:42:44 +00:00
24 lines
1.1 KiB
JSON
24 lines
1.1 KiB
JSON
{
|
|
"name": "server",
|
|
"version": "0.0.76",
|
|
"description": "NodeJS wrapper for calling the SAS binary executable",
|
|
"repository": "https://github.com/sasjs/server",
|
|
"scripts": {
|
|
"server": "npm run server:prepare && npm run server:start",
|
|
"server:prepare": "cd web && npm ci && npm run build && cd ../api && npm ci && npm run build && cd ..",
|
|
"server:start": "cd api && npm run start:prod",
|
|
"lint-api:fix": "npx prettier --write \"api/src/**/*.{ts,tsx,js,jsx,html,css,sass,less,yml,md,graphql}\"",
|
|
"lint-api": "npx prettier --check \"api/src/**/*.{ts,tsx,js,jsx,html,css,sass,less,yml,md,graphql}\"",
|
|
"lint-web:fix": "npx prettier --write \"web/src/**/*.{ts,tsx,js,jsx,html,css,sass,less,yml,md,graphql}\"",
|
|
"lint-web": "npx prettier --check \"web/src/**/*.{ts,tsx,js,jsx,html,css,sass,less,yml,md,graphql}\"",
|
|
"lint": "npm run lint-api && npm run lint-web",
|
|
"lint:fix": "npm run lint-api:fix && npm run lint-web:fix"
|
|
},
|
|
"devDependencies": {
|
|
"@semantic-release/changelog": "^6.0.1",
|
|
"@semantic-release/exec": "^6.0.3",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/github": "^8.0.4"
|
|
}
|
|
}
|