-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.4 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "networks-idea-backend",
"version": "0.0.1",
"main": "index.js",
"repository": "git@github.com:Web-networks/backend.git",
"author": "Nikita Sikalov <sikalov@yandex-team.ru>",
"license": "MIT",
"scripts": {
"start-dev": "NODE_ENV=development ts-node tasks/start-dev.ts",
"start": "ts-node ./src/app.ts",
"lint": "yarn eslint . --ext .ts,.js",
"test": "NODE_ENV=testing ts-node tasks/test-server.ts",
"gen-doc": "apidoc -i src/api -o docs/"
},
"husky": {
"hooks": {
"pre-commit": "npx --no-install lint-staged"
}
},
"lint-staged": {
"*.js": "npx eslint",
"*.ts?(x)": "npx eslint"
},
"_moduleDirectories": [
"build",
"src"
],
"dependencies": {
"aws-sdk": "^2.653.0",
"axios": "^0.19.2",
"bcrypt": "^3.0.8",
"body-parser": "^1.19.0",
"celebrate": "^11.0.1",
"config": "^3.2.5",
"connect-mongo": "^3.2.0",
"dotenv": "^8.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"module-alias": "^2.2.2",
"mongoose": "^5.8.11",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"node-mongodb-fixtures": "^3.2.2",
"print-object": "^1.1.3",
"query-string": "^6.11.0",
"shelljs": "^0.8.3",
"ts-node": "^8.6.2",
"typedi": "^0.8.0",
"typescript": "^3.7.5",
"uuid": "3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/config": "^0.0.36",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/hapi__joi": "^16.0.9",
"@types/lodash": "^4.14.149",
"@types/log4js": "^2.3.5",
"@types/mocha": "^7.0.2",
"@types/module-alias": "^2.0.0",
"@types/mongoose": "^5.7.0",
"@types/morgan": "^1.7.37",
"@types/multer": "^1.4.2",
"@types/shelljs": "^0.8.7",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"apidoc": "^0.20.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"chalk": "^4.0.0",
"eslint": "^6.8.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-optimize-regex": "^1.1.7",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sonarjs": "^0.5.0",
"husky": "^4.2.1",
"lint-staged": "^10.2.9",
"mocha": "^7.0.1",
"ts-node-dev": "^1.0.0-pre.44"
}
}