1
0
mirror of https://github.com/sasjs/server.git synced 2026-04-14 01:23:15 +00:00

chore(*): initial commit

This commit is contained in:
Yury Shkoda
2021-06-09 09:03:54 +03:00
commit c3b7a84322
6 changed files with 1591 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "server",
"version": "0.0.1",
"description": "SASjs server",
"main": "./src/index.ts",
"scripts": {
"start": "nodemon ./src/index.ts",
"build": "tsc --project ./"
},
"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",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}