-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.24 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.24 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
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
85
86
87
88
89
{
"name": "nodejs-ecs",
"version": "0.0.0",
"description": "sample nodejs server setup",
"main": "src/index.ts",
"scripts": {
"clean": "./clean.sh",
"preprebuild": "npm run clean",
"prebuild": "npm run lint",
"build": "tsc",
"prestart": "npm run build",
"start": "node ./dist/src/index.js --env .env",
"prebuild:docker": "npm run build",
"build:docker": "docker build -t $npm_package_name .",
"start:docker": "npm run build:docker && docker run -p 3000:3000 $npm_package_name",
"test": "jest",
"lint": "npm run preety && tslint --project tsconfig.json",
"prettier:base": "prettier --parser typescript --single-quote",
"preety": "npm run prettier:base -- --write \"src/**/*.{ts,tsx}\""
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/RemoteState/nodejs-ecs.git"
},
"keywords": [
"nodejs",
"ecs",
"ecr"
],
"author": "Tejashwi Kalp Taru",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/RemoteState/nodejs-ecs/issues"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
},
"homepage": "https://github.com/RemoteState/nodejs-ecs#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/joi": "^17.2.3",
"@types/node": "^16.4.1",
"@types/supertest": "^2.0.11",
"husky": "^7.0.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"supertest": "^6.1.4",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.5"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-validation": "^3.0.8",
"joi": "^17.4.1",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.34"
}
}