-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.66 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.66 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
{
"name": "node-ts-inversify-template",
"version": "0.1.6",
"description": "Backend node project template",
"main": "index.js",
"scripts": {
"build": "npx del-cli ./dist && tsc",
"start": "node ./dist/index.js",
"dev": "npx ts-node-dev ./src/index.ts ",
"lint": "eslint ./src --ext .ts --fix",
"release": "npx standard-version && git push --follow-tags origin main",
"test": "jest --coverage",
"testw": "jest --watch",
"prepare": "husky install"
},
"keywords": [
"node",
"typescript",
"inversify",
"template",
"power",
"kernel",
"jest",
"eslint",
"conventional",
"commitlint"
],
"author": {
"name": "Harry Tang",
"email": "harry@powerkernel.com",
"url": "https://powerkernel.com"
},
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@types/config": "^0.0.41",
"@types/jest": "^27.4.0",
"@types/nodemailer": "^6.4.4",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"del-cli": "^4.0.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"prettier": "2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"dependencies": {
"@powerkernel/power-common": "^0.1.36",
"@powerkernel/power-mongodb-client": "^0.1.0",
"apollo-server-core": "^3.6.1",
"apollo-server-express": "^3.6.1",
"config": "^3.3.7",
"express": "^4.17.2",
"inversify": "^6.0.1",
"nast": "^1.0.19",
"nats": "^2.4.0",
"nodemailer": "^6.7.2",
"reflect-metadata": "^0.1.13"
}
}