-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
66 lines (66 loc) · 2.39 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
{
"name": "node-skeleton",
"version": "1.0.0",
"description": "Node Skeleton",
"main": "dist/server.js",
"repository": {
"type": "git",
"url": "https://github.com/tvvignesh/node-skeleton.git"
},
"scripts": {
"build": "npx tsc && npx copyfiles -u 1 -e \"src/**/*.ts\" \"src/**/*.*\" dist/",
"watch": "tsc -w -p ./",
"debug": "npx cross-env NODE_ENV=development nodemon --nolazy ./dist/server.js",
"docker-debug": "npm run build && docker-compose up",
"lint": "npx eslint --ext=.ts .",
"test": "npx tsc && ava ./dist/tests",
"document": "npx typedoc",
"format": "prettier --write '**/*.{ts,js,css,md}'",
"start": "node ./dist/server.js",
"start-dev": "npm run format && npm run lint && npx cross-env NODE_ENV=development nodemon ./dist/server.js",
"start-alpha": "npm run build && npm run lint && npx cross-env NODE_ENV=alpha node ./dist/server.js",
"start-secure": "npm run build && npm run lint && npx cross-env NODE_ENV=secure node ./dist/server.js"
},
"author": "Vignesh T.V.",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"glob": "^7.1.6",
"helmet": "^3.22.0",
"jaeger-client": "^3.17.2",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mustache-express": "^1.3.0",
"opentracing": "^0.14.4",
"passport": "^0.4.1",
"prom-client": "^12.0.0",
"swagger-ui-express": "^4.1.4",
"winston": "^3.2.1",
"xss-clean": "^0.1.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.6",
"@types/express-serve-static-core": "^4.17.4",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"acorn": "^7.1.1",
"ava": "3.6.0",
"copyfiles": "^2.2.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.3",
"prettier": "^2.0.4",
"typedoc": "^0.17.4",
"typescript": "^3.8.3"
}
}