-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.61 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": "javascript-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pattern:diamond": " node extra/patterns/diamond.js",
"pattern:equilateral": "node extra/patterns/equilateral.js",
"start:extra": "babel-node extra",
"start:src": "tsc-watch --project . --onSuccess \"npm run nodemon\"",
"start:extraTs": "tsc-watch --project . --onSuccess \"npm run nodemon\"",
"nodemon": "nodemon ./dist/index.js",
"lint": "./node_modules/tslint/bin/tslint -c tslint.json -p tsconfig.json --exclude 'node_modules/**/*.{j,t}s'",
"lint:fix": "npm run lint --fix",
"pre-commit": "npm test && npm run lint ",
"pre-push": "npm test && npm run lint ",
"commit": "npx git-cz"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "7.8.3",
"@babel/node": "7.8.3",
"@babel/preset-env": "7.8.3",
"@types/express": "4.17.2",
"@types/mongoose": "5.7.0",
"@types/node": "13.5.1",
"babel": "6.23.0",
"babel-node": "0.0.1-security",
"bcrypt": "^3.0.8",
"body-parser": "1.19.0",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.1.0",
"dotenv": "8.2.0",
"express": "4.17.1",
"git-cz": "4.2.0",
"husky": "4.2.1",
"jsonwebtoken": "8.5.1",
"mongoose": "5.8.11",
"nodemon": "2.0.2",
"pre-commit": "1.2.2",
"pre-push": "0.1.1",
"swagger": "0.7.5",
"swagger-jsdoc": "^3.5.0",
"swagger-ui-express": "^4.1.3",
"tslint": "6.0.0"
},
"devDependencies": {
"tsc-watch": "4.1.0",
"typescript": "3.7.5"
}
}