-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.23 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"author": "Koldo Urrosolo",
"bugs": {
"url": "https://github.com/morelab/st_main_server/issues"
},
"dependencies": {
"app-root-path": "^3.0.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mongodb": "^3.6.4",
"morgan": "^1.10.0",
"ts-node": "^9.1.1",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"description": "Main server Sentient Things",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.15",
"@types/chai-http": "^4.2.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/faker": "^5.1.6",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.0",
"@types/mongodb": "^3.6.7",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.31",
"@types/sinon": "^9.0.10",
"@types/sinon-chai": "^3.2.5",
"@types/uuid": "^8.3.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"chai": "^4.3.0",
"chai-http": "^4.3.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"faker": "^5.4.0",
"husky": "4.3.8",
"lint-staged": "^10.5.4",
"mocha": "^8.3.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0",
"typescript": "^4.1.5"
},
"homepage": "https://github.com/morelab/st_main_server#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"keywords": [
"SentientThings",
"Consumption"
],
"license": "ISC",
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*.{ts,js,css,md}": "prettier --write"
},
"main": "index.js",
"name": "st_main_server",
"nyc": {
"exclude": [
"test",
"node_modules",
"src/utils"
],
"cache": false,
"report-dir": "./test/report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koldou98/HexagonalArchitectureServer.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf build",
"start": "node build/index.js",
"dev": "nodemon src/index.ts",
"local": "npm run build && node build/index.js",
"test": "cross-env NODE_ENV=test mocha --timeout 5000 --exit --slow -1 -r ts-node/register 'test/**/*.test.ts'",
"report": "cross-env NODE_ENV=test nyc --reporter=lcov mocha --exit --slow -1 -r ts-node/register --timeout 5000 'test/**/*.test.ts'",
"text-report": "cross-env NODE_ENV=test nyc --reporter=text-summary mocha --exit --slow -1 -r ts-node/register --timeout 5000 'test/**/*.test.ts'",
"nyc": "cross-env NODE_ENV=test nyc mocha -r ts-node/register --exit --slow -1 --timeout 5000 'test/**/*.test.ts'",
"codecov": "nyc report --reporter=json"
},
"version": "1.0.0"
}