-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.35 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.35 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
{
"name": "webeleon-node-typescript-starter",
"version": "0.0.0",
"description": "A generic starter for node js starter projects",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/index.js",
"format": "prettier --write '**/*.ts'",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"test:coverage": "NODE_ENV=test jest --coverage",
"prepare": "husky install",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Webeleon/node-typescript"
},
"bugs": {
"url": "https://github.com/Webeleon/node-typescript/issues"
},
"contributors": [
{
"name": "Julien Prugne",
"email": "julien@webeleon.dev"
}
],
"keywords": [
"project starter",
"webeleon",
"node js",
"typescript"
],
"author": "Webeleon",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@types/jest": "27.5.2",
"@types/sinon": "10.0.20",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "11.2.6",
"prettier": "2.8.8",
"sinon": "11.1.2",
"standard-version": "9.5.0",
"ts-jest": "27.1.5",
"typescript": "4.9.5"
},
"lint-staged": {
"src/**/*": "prettier --write --ignore-unknown"
}
}