-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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": "hostelme-node-backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node app.js",
"start-local": "nodemon",
"build": "rm -rf dist && tsc",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll",
"view:coverage": "serve coverage/lcov-report",
"clean": "rm -rf coverage src/**/*.js src/**/*.map",
"lint": "tslint './src/**/*.ts' --config tslint.json"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/saikumar-madana/hostelme-node-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/saikumar-madana/hostelme-node-backend/issues"
},
"homepage": "https://github.com/saikumar-madana/hostelme-node-backend#readme",
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^8.0.29",
"@types/supertest": "^2.0.10",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3",
"ts-jest": "^26.5.4",
"ts-node": "3.3.0",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/express": "^4.17.11",
"cors": "^2.8.5",
"express": "^4.17.1",
"husky": "^4.3.8",
"mysql": "^2.14.1",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.32",
"typescript": "^4.2.4"
}
}