-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.92 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.92 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
{
"private": true,
"scripts": {
"build": "pnpm run -r build",
"lint": "pnpm run lint:css && pnpm run lint:js && pnpm run lint:ts",
"lint:css": "stylelint --ignore-path .gitignore '**/*.{css,xcss}'",
"lint:js": "eslint --ignore-path .gitignore --ext .cjs,.js,.jsx,.mjs,.ts,.tsx .",
"lint:ts": "tsc --project ./tsconfig.lint.json",
"serve": "docker compose --file docker-compose.dev.yml up --build",
"setup": "./scripts/dev-setup.sh",
"test": "TZ=UTC jest --coverage"
},
"devDependencies": {
"@babel/core": "7.21.5",
"@babel/plugin-transform-modules-commonjs": "7.21.5",
"@babel/preset-typescript": "7.21.5",
"@maxmilton/stylelint-config": "0.0.12",
"@testing-library/jest-dom": "5.16.5",
"@types/babel__core": "7.20.0",
"@types/jest": "29.5.1",
"@types/node": "18.16.3",
"@types/testing-library__jest-dom": "5.14.5",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"babel-preset-solid": "1.6.13",
"esbuild": "0.17.18",
"eslint": "8.39.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-unicorn": "46.0.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-resolve": "29.5.0",
"prettier": "2.8.8",
"prettier-plugin-pkg": "0.17.1",
"prettier-plugin-sh": "0.12.8",
"prettier-plugin-sql": "0.14.0",
"solid-js": "1.6.15",
"solid-testing-library": "0.5.1",
"stylelint": "15.2.0",
"stylelint-config-standard": "30.0.1",
"typescript": "4.9.5"
},
"jest": {
"collectCoverageFrom": [
"packages/*/src/**/*.{cjs,js,jsx,mjs,ts,tsx}",
"packages/http-status-codes/index.ts",
"!packages/trackx-api/src/routes/__ROUTE_MANIFEST__.ts"
],
"coverageProvider": "v8",
"coverageReporters": [
"text",
"lcovonly"
],
"resolver": "./jest-resolver.cjs",
"testRegex": "\\.test\\.tsx?$",
"transformIgnorePatterns": [
"node_modules/(?!solid-js.*|.*(?<=.[tj]sx))$"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom"
]
},
"prettier": {
"arrowParens": "always",
"endOfLine": "lf",
"singleQuote": true,
"trailingComma": "all",
"pluginSearchDirs": [
"."
],
"overrides": [
{
"files": [
"*.test.tsx",
"*.test.ts"
],
"options": {
"printWidth": 100
}
}
]
},
"stylelint": {
"reportInvalidScopeDisables": true,
"reportNeedlessDisables": true,
"extends": [
"stylelint-config-standard",
"@maxmilton/stylelint-config"
],
"ignoreFiles": [
"**/dist/**",
"**/node_modules/**"
],
"rules": {
"import-notation": null,
"function-no-unknown": null
}
}
}