-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.63 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.63 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
{
"name": "sonarqube-node-tpescript-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"build": "npm run lint && tsc -p .",
"start:local": "npm run lint && NODE_ENV=local nodemon index.js",
"start:test": "npm run lint && NODE_ENV=test nodemon build/server.js",
"start:staging": "npm run lint && NODE_ENV=staging node build/server.js",
"start:production": "npm run lint && NODE_ENV=production build/server.js",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"pretty": "prettier --write 'src/**/*.ts'",
"prepare": "husky install",
"precommit": "npm run lint-fix && npm run pretty",
"prepush": "npm run lint ",
"sonar": "ts-node sonar-scanner.ts"
},
"author": "Santosh Shinde",
"license": "Apache-2.0",
"dependencies": {
"@types/express": "^4.17.12",
"@types/node": "^16.0.0",
"@types/winston": "^2.3.9",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.4",
"typescript": "^4.3.5",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.0",
"nodemon": "^2.0.9",
"prettier": "^2.3.2",
"sonarqube-scanner": "^2.8.1",
"ts-node": "^10.0.0"
}
}