-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
76 lines (76 loc) · 2.11 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
{
"version": "0.1.0",
"private": true,
"scripts": {
"add": "ts-node src/add.ts",
"update": "ts-node src/update.ts",
"build": "tsc -p",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --noEmit",
"test": "jest"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"browser": true
},
"extends": [
"standard",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended",
"plugin:aspida/recommended",
"plugin:prettier/recommended",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"root": true,
"rules": {
"no-use-before-define": "off",
"@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",
"default-param-last": "off"
}
},
"prettier": {
"printWidth": 100,
"semi": false,
"arrowParens": "avoid",
"singleQuote": true,
"trailingComma": "none"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.32",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"aspida": "^1.6.3",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-aspida": "^0.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-standard": "^5.0.0",
"front-matter": "^4.0.2",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"standard-version": "^9.1.1",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}