-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.51 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.51 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
{
"name": "node-ts-inversify-template",
"version": "1.0.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/power-common": "^0.1.38",
"apollo-server-core": "^3.6.3",
"apollo-server-express": "^3.6.3",
"config": "^3.3.7",
"express": "^4.17.2",
"inversify": "^6.0.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@types/config": "0.0.41",
"@types/jest": "27.4.1",
"@typescript-eslint/eslint-plugin": "5.15.0",
"@typescript-eslint/parser": "5.15.0",
"del-cli": "4.0.1",
"eslint": "8.11.0",
"eslint-config-prettier": "8.5.0",
"husky": "7.0.4",
"jest": "27.5.1",
"prettier": "2.6.0",
"ts-jest": "27.1.3",
"typescript": "4.6.2"
}
}