-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.15 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "onefx-auth",
"license": "MIT",
"version": "2.6.9",
"description": "field_description",
"files": [
"lib",
"index.d.ts",
"index.js"
],
"scripts": {
"test": "npm run cover",
"check-coverage": "nyc check-coverage --lines 65 --functions 60 --Statements 65",
"ava": "NODE_ENV=test ava",
"server": "node server",
"lint": "pretty-quick --staged && eslint src --fix --ext .js,.tsx,.ts --quiet",
"qualitycheck": "npm-run-all typecheck",
"cover": "tsc && NODE_ENV=test npm run lint && nyc npm run ava",
"size": "ls -lh lib/",
"bp": "npm run build && npm run size",
"build:js": "rm -rf ./lib && babel src/ --source-maps inline --extensions \".ts,.tsx,.js,.jsx\" --ignore **/__test__/**,src/**/**.test.ts -d lib",
"build:watch": "babel --watch src/**/*.ts -d lib",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run build:js && npm run build:types"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts",
"src/**/__tests__/**"
],
"reporter": [
"lcov",
"text",
"text-summary",
"cobertura"
],
"extension": [
".tsx",
".ts"
],
"cache": true,
"temp-directory": "./coverage/.nyc_output"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/puncsky/template_website.git"
},
"keywords": [],
"author": "field_author",
"bugs": {
"url": "https://github.com/puncsky/template_website/issues"
},
"homepage": "https://github.com/puncsky/template_website#readme",
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/preset-env": "7.12.11",
"@babel/preset-typescript": "7.12.7",
"@babel/register": "7.12.10",
"@puncsky/eslint-config-onefx": "^2.6.6",
"@types/koa": "^2.11.4",
"@types/mongoose": "^5.7.36",
"@types/node": "11.15.27",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "4.1.1",
"@typescript-eslint/parser": "4.1.1",
"ava": "2.4.0",
"babel-loader": "8.2.2",
"babel-plugin-module-resolver": "3.2.0",
"babel-plugin-transform-class-properties": "6.24.1",
"build-changelog": "2.1.2",
"eslint": "7.9.0",
"eslint-plugin-import": "2.22.0",
"global": "4.4.0",
"husky": "4.3.6",
"koa": "^2.13.0",
"mongoose": "^5.10.6",
"nyc": "14.1.1",
"onefx": "^2.6.8",
"prettier": "2.3.1",
"pretty-quick": "2.0.2",
"ts-node": "8.10.2",
"typescript": "3.9.7",
"uuid": "^8.3.0"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "8.5.0",
"@types/nodemailer": "6.4.0",
"@types/nodemailer-mailgun-transport": "1.4.1",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.4.11",
"nodemailer-mailgun-transport": "^2.0.0"
},
"peerDependencies": {
"@types/koa": "^2.11.4",
"@types/mongoose": "^5.7.36",
"@types/uuid": "^8.3.0",
"koa": "^2.13.0",
"mongoose": "^5.10.6",
"onefx": "^2.6.5",
"uuid": "^8.3.0"
}
}