-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.89 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
49
50
51
52
53
{
"name": "cabinet",
"version": "1.0.0",
"description": "Projet M2 MIASHS de cabinet médical",
"main": "server.js",
"scripts": {
"start": "node ./appJS/server.js",
"startInspect:all": "node --inspect ./appJS/server mongonative mongoose ",
"compile": "rm -Rf ./appJS && node ./node_modules/typescript/bin/tsc",
"compileWatch": "rm -Rf ./appJS && node ./node_modules/typescript/bin/tsc --watch",
"lint": "node ./node_modules/tslint/bin/tslint --project ./tsconfig.json --config \"./tslint.yaml\" \"app/**/*.ts\" --format verbose",
"lint:lazy": "yarn run lint || echo -e '\\nLint error\\n\\n'",
"watch:lint": "node ./node_modules/chokidar-cli/index.js 'app/**/*.ts' -c \"npm run lint\" --initial --verbose",
"compileAndLint": "npm-run-all --parallel watch:lint compileWatch",
"tscwatch": "rm -Rf ./appJS/ && node ./node_modules/tsc-watch --onSuccess 'npm-run-all lint:lazy startInspect:all'",
"tscwatchNoLint": "rm -Rf ./appJS/ && node ./node_modules/tsc-watch --onSuccess 'yarn run startInspect:all' "
},
"engines": {
"node": ">=9.5.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/semver": "^5.5.0",
"body-parser": "^1.18.3",
"bson": "^4.0.1",
"console-error": "^0.0.4",
"console-info": "^0.0.5",
"console-warn": "^0.0.4",
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"mongodb": "^3.1.13",
"mongoose": "^5.4.11",
"path": "^0.12.7",
"rxjs": "^6.4.0",
"semver": "^5.6.0"
},
"devDependencies": {
"@reactivex/rxjs": "^6.4.0",
"@types/express": "^4.16.1",
"@types/fs-extra": "^5.0.4",
"@types/mongodb": "^3.1.19",
"@types/mongoose": "^5.3.12",
"@types/node": "^11.9.0",
"chokidar-cli": "^1.2.1",
"module-alias": "^2.1.0",
"npm-run-all": "^4.1.5",
"tsc-watch": "^1.1.37",
"tslint": "^5.12.1",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.3.3"
}
}