Files
github-stats-extended/knip.jsonc
T
Marco Pasqualetti 58e02dae29 feat: replace create-react-app with vite (#34)
* feat: replace `create-react-app` with `vite`

* fix: correct axios-override extension

* chore: add more extensions to lint-staged
2026-01-25 12:20:17 +01:00

36 lines
1014 B
JSON

{
"$schema": "./node_modules/knip/schema.json",
"workspaces": {
"apps/backend": {
"entry": [
"api-renamed/*.js",
"express.js",
"jest.*.js",
"tests/bench/*.bench.js"
],
"ignoreFiles": [
"_dot_vercel_copy/**/*" // Hopefully by using a npm package this file will be removed
],
"ignoreDependencies": [
"jest", // used by test scripts referencing binary due to lack of ESM support
"@octokit/request-error" // used by js scripts executed in a GitHub actions not listed in deps
]
},
"apps/frontend": {
"entry": [
"src/index.jsx",
"src/dotenv-browser-stub.js",
"src/wakatime-override.js"
],
"ignoreDependencies": [
// below dependencies are added because backend folder is copied inside frontend folder,
// so some of his dependencies must be present here
"github-username-regex",
"emoji-name-map",
"word-wrap"
]
}
}
}