backend/package.json

45 lines
1.2 KiB
JSON
Raw Normal View History

2023-02-21 08:53:15 +00:00
{
"name": "backend",
"scripts": {
"dev": "solid-start dev",
"build": "solid-start build",
"start": "solid-start start",
"test": "vitest run",
"test-watch": "vitest",
"test-ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"type": "module",
"devDependencies": {
"@solidjs/meta": "^0.28.2",
"@solidjs/router": "^0.7.0",
2023-02-21 19:35:47 +00:00
"@solidjs/testing-library": "^0.6.1",
2023-02-21 08:53:15 +00:00
"@testing-library/jest-dom": "^5.16.5",
2023-02-22 13:54:41 +00:00
"@types/lodash": "^4.14.191",
2023-02-21 08:53:15 +00:00
"@types/testing-library__jest-dom": "^5.14.5",
2023-02-22 13:54:41 +00:00
"@types/uuid": "^9.0.1",
2023-02-28 21:23:46 +00:00
"@vitest/coverage-c8": "^0.29.2",
"@vitest/ui": "^0.29.2",
2023-02-21 19:35:47 +00:00
"jsdom": "^21.1.0",
2023-02-21 08:53:15 +00:00
"solid-js": "^1.6.11",
2023-02-28 21:23:46 +00:00
"solid-start": "^0.2.22",
"solid-start-node": "^0.2.22",
2023-02-21 19:35:47 +00:00
"typescript": "^4.9.5",
"undici": "^5.20.0",
"vite": "^4.1.4",
2023-02-28 21:23:46 +00:00
"vitest": "^0.29.2"
2023-02-21 10:23:35 +00:00
},
"dependencies": {
"@felte/reporter-solid": "^1.2.5",
"@felte/reporter-tippy": "^1.1.5",
"@felte/solid": "^1.2.7",
2023-02-28 21:23:46 +00:00
"@kobalte/core": "^0.6.2",
2023-02-21 12:38:43 +00:00
"@types/pouchdb": "^6.4.0",
2023-02-22 13:54:41 +00:00
"lodash": "^4.17.21",
2023-02-21 12:38:43 +00:00
"pouchdb": "^8.0.1",
2023-02-21 15:12:52 +00:00
"pouchdb-server": "^4.2.0",
"tippy.js": "^6.3.7",
2023-02-21 15:12:52 +00:00
"uuid": "^9.0.0"
2023-02-21 08:53:15 +00:00
}
2023-02-21 10:23:35 +00:00
}