-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.08 KB
/
package.json
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
{
"name": "@materya/template-repo",
"description": "An opinionated template repository for Materya projects",
"version": "1.0.0",
"author": "Sylver <sylver@materya.io>",
"email": "sylver@materya.io",
"homepage": "https://github.com/materya/template-repo",
"url": "https://github.com/materya/template-repo",
"repository": {
"type": "git",
"url": "https://github.com/materya/template-repo.git"
},
"bugs": {
"url": "https://github.com/materya/template-repo/issues"
},
"license": "GPL-3.0",
"keywords": [
"typescript",
"template",
"node",
"eslint",
"git"
],
"bin": {},
"main": "",
"types": "",
"scripts": {
"build": "run-p build:*",
"build:all": "tsc -d",
"develop": "tsc-watch --onSuccess \"node ./dist/server.js\"",
"describe": "npm-scripts-info",
"release": "standard-version -s",
"test": "run-s test:*",
"test:ts": "tsc --noEmit",
"test:lint": "eslint 'src/**/*.ts'",
"test:unit": "mocha test/**/*.ts",
"coverage": "run-s coverage:*",
"coverage:unit": "nyc --silent npm run test:unit",
"coverage:report": "nyc report --reporter=lcov --reporter=text",
"coverage:codecov": "codecov",
"vulnerabilities": "snyk monitor"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint"
]
},
"dependencies": {},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.11",
"@types/debug": "^4.1.5",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.0",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"eslint": "^7.4.0",
"eslint-config-materya": "^5.0.0",
"eslint-import-resolver-typescript": "^2.0.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"mocha": "^8.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.1",
"source-map-support": "^0.5.19",
"standard-version": "^8.0.0",
"supertest": "^4.0.2",
"ts-node": "^8.9.1",
"tsc-watch": "^4.2.3",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.8.3"
}
}