-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.4 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
{
"name": "martian-exploration",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"lint": "eslint src/**/*.ts --fix",
"build": "rimraf dist && ttsc --build tsconfig.prod.json",
"test": "NODE_ENV=test mocha --exit -r ts-node/register tests/**/*.spec.ts",
"test:powershell": "$env:NODE_ENV='test'; & mocha --exit -r ts-node/register tests/**/*.spec.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test",
"start:dev": "nodemon --config .nodemonrc.json --inspect src/app.ts",
"start:prod": "npm run build && node dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pabloelisseo/martian-exploration.git"
},
"author": "Pablo Eliseo",
"license": "ISC",
"bugs": {
"url": "https://github.com/pabloelisseo/martian-exploration/issues"
},
"homepage": "https://github.com/pabloelisseo/martian-exploration#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/chai-http": "^4.2.0",
"@types/mongodb-memory-server": "^2.3.0",
"@types/morgan": "^1.9.3",
"@types/node": "^16.0.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"chai": "^4.3.4",
"eslint": "^8.3.0",
"husky": "^7.0.1",
"jest": "^27.4.3",
"mocha": "^9.1.3",
"mongodb-memory-server": "^8.0.4",
"nodemon": "^2.0.10",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"supertest": "^6.1.6",
"@types/mocha": "^9.0.0",
"ts-jest": "^27.1.0",
"ts-node": "^10.0.0"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongodb": "^4.2.1",
"morgan": "^1.10.0",
"rimraf": "^3.0.2",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"ttypescript": "^1.5.13",
"typescript": "^4.5.2",
"typescript-transform-paths": "^3.3.1",
"winston": "^3.3.3",
"@types/cors": "^2.8.11",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/lodash": "^4.14.171",
"@types/mongodb": "^4.0.7",
"@types/morgan": "^1.9.3",
"@types/node": "^16.0.1"
}
}