-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.55 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "moov_server",
"version": "1.0.0",
"description": "",
"main": "src/app.ts",
"scripts": {
"watch": "nodemon ./src/app.ts",
"lint": "npx eslint --cache --parser-options={project:./tsconfig.lint.json} ./src/**/*.ts",
"start": "npm run build && ts-node -r tsconfig-paths/register src/index.ts",
"start:dev": "nodemon",
"start:prod": "node ./dist/index",
"test": "../../../node_modules/.bin/jest --silent --reporters=default --coverage --reporters=jest-junit --reporters=jest-html-reporters && npm coverage",
"coverage": "../../../node_modules/.bin/cpr ./coverage/coverage-final.json ../../../coverage/coverage-portal-be.json -o",
"build": "tsc --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shaulbm/moov_server.git"
},
"author": "Shaul Ben Maor",
"license": "ISC",
"bugs": {
"url": "https://github.com/Shaulbm/moov_server/issues"
},
"homepage": "https://github.com/Shaulbm/moov_server#readme",
"dependencies": {
"axios": "^0.22.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jest": "^27.2.4",
"nodemon": "^2.0.13",
"perf_hooks": "^0.0.1",
"ts-node": "^10.2.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.5.2",
"tsconfig-paths": "^3.11.0",
"tslint": "^6.1.3",
"typescript": "^4.4.3"
}
}