forked from frouriojs/frourio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.26 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
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
115
116
117
118
119
{
"name": "frourio",
"version": "0.22.0",
"description": "Fast and type-safe full stack framework, for TypeScript",
"author": "Solufa <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "bin/index.js",
"homepage": "https://frourio.io",
"repository": {
"type": "git",
"url": "git+https://github.com/frouriojs/frourio.git"
},
"bugs": {
"url": "https://github.com/frouriojs/frourio/issues"
},
"files": [
"dist"
],
"keywords": [
"typescript",
"aspida",
"fastify"
],
"scripts": {
"dev": "npm run build && cd servers && aspida && node build.js",
"build": "npm run rimraf -- dist && tsc -p tsconfig.build.json",
"rimraf": "node -e \"require('fs').rmdirSync(process.argv[1], { recursive: true })\"",
"release": "standard-version --skip.tag",
"release:major": "npm run release -- --release-as major",
"release:minor": "npm run release -- --release-as minor",
"release:patch": "npm run release -- --release-as patch",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"browser": true
},
"extends": [
"standard",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended",
"plugin:prettier/recommended",
"prettier/@typescript-eslint",
"prettier/standard"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"root": true,
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/no-explicit-any": "off"
}
},
"prettier": {
"printWidth": 100,
"semi": false,
"arrowParens": "avoid",
"singleQuote": true,
"trailingComma": "none",
"overrides": [
{
"files": [
"*.md",
"*.yml"
],
"options": {
"singleQuote": false
}
}
]
},
"dependencies": {
"aspida": "^1.1.1",
"velona": "^0.7.0"
},
"devDependencies": {
"@aspida/axios": "^1.1.1",
"@types/busboy": "^0.2.3",
"@types/jest": "^26.0.19",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"axios": "^0.21.1",
"class-validator": "^0.12.2",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"fastify": "^3.9.2",
"fastify-multipart": "^3.3.1",
"form-data": "^3.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}