-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
54
{
"name": "webtracker",
"version": "0.1.0-beta",
"description": "web tracker",
"main": "dist/start.js",
"preferGlobal": true,
"bin": "./dist/commander/index.js",
"scripts": {
"build": "tsc",
"commander": "tsc && node dist/commander/index.js",
"start": "tsc && node dist/start.js",
"start:dev": "tsc && nodemon dist/start.js",
"test": "jest --runInBand --verbose",
"docs": "jsdoc -c jsdoc.config.json",
"lint": "eslint ./src --fix"
},
"author": "ayoub touba",
"license": "ISC",
"dependencies": {
"@types/config": "0.0.36",
"@types/jest": "^26.0.13",
"@types/mongoose": "^5.7.36",
"@types/socket.io-client": "^1.4.34",
"bcrypt": "^5.1.0",
"chalk": "^4.1.0",
"commander": "^7.0.0",
"config": "^3.3.1",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"inquirer": "^7.3.3",
"inversify": "^5.0.1",
"mkdirp": "^1.0.4",
"mongodb": "^3.6.0",
"mongoose": "^5.10.1",
"node-watch": "^0.6.4",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"socket.io-client": "^2.3.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/node": "^14.6.1",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"better-docs": "^2.3.2",
"eslint": "^7.11.0",
"jest": "^26.4.2",
"nodemon": "^2.0.7",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}