-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
103 lines (103 loc) · 2.12 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
{
"name": "pure-finance",
"version": "1.0.0",
"license": "MIT",
"author": "Gabriel Montes",
"scripts": {
"build": "npm run lerna:run build",
"deps:check": "npm run lerna:run deps:check",
"format:check": "prettier --check .",
"postinstall": "lerna bootstrap",
"lerna:run": "lerna run --stream --concurrency 1",
"lint": "eslint --cache --quiet .",
"test": "npm run lerna:run test",
"test:e2e": "npm run lerna:run test:e2e"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"dependency-check": "^4.1.0",
"eslint": "^7.29.0",
"eslint-config-bloq": "^4.0.2",
"husky": "^4.3.8",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"mocha": "^9.0.3",
"next": "^14.0.0",
"node-gyp": "^10.0.0",
"nyc": "^15.1.0",
"precinct": "^8.1.0",
"prettier": "^2.3.1",
"prettier-plugin-tailwind": "^2.2.12",
"tailwindcss": "^2.2.7"
},
"eslintConfig": {
"extends": [
"bloq",
"prettier"
],
"ignorePatterns": [
"site/out"
],
"overrides": [
{
"extends": [
"bloq/node",
"prettier"
],
"files": [
"packages/**/*.js"
]
},
{
"extends": [
"bloq/mocha",
"prettier"
],
"files": [
"*.spec.js"
]
},
{
"extends": [
"bloq/next",
"prettier"
],
"files": [
"site/**/*.js"
],
"rules": {
"@next/next/no-html-link-for-pages": [
"warn",
"site/pages"
]
}
}
],
"rules": {
"promise/no-nesting": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test && npm run deps:check"
}
},
"lint-staged": {
"!(*.js)": [
"prettier --ignore-unknown --write"
],
"*.js": [
"eslint --cache --fix --quiet",
"prettier --write"
]
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}