-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.53 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
{
"name": "node-ts-inversify-template",
"version": "1.4.0",
"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",
"test:w": "jest --coverage --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",
"dependencies": {
"@powerkernel/common": "0.2.18",
"apollo-server-core": "3.13.0",
"apollo-server-express": "3.13.0",
"config": "3.3.12",
"express": "4.21.2",
"graphql-tools": "8.3.20",
"inversify": "6.2.2",
"reflect-metadata": "0.2.2"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@types/config": "3.3.5",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"del-cli": "5.1.0",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.2",
"husky": "8.0.3",
"jest": "29.7.0",
"prettier": "2.8.8",
"ts-jest": "29.4.5",
"typescript": "4.9.5"
}
}