58 lines
2.2 KiB
JSON
58 lines
2.2 KiB
JSON
{
|
|
"name": "the-buscuit-machine",
|
|
"version": "0.0.1",
|
|
"description": "A biscuit machine implementation.",
|
|
"productName": "The Buscuit Machine",
|
|
"author": "Stanislav Nikolov <hello@snikolov.me>",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "eslint --ext .js,.ts,.vue ./",
|
|
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
|
|
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
|
|
"test:unit:ui": "vitest --ui",
|
|
"test:unit": "vitest",
|
|
"test:unit:ci": "vitest run",
|
|
"test:unit:coverage": "jest --coverage",
|
|
"test:unit:watch": "jest --watch",
|
|
"test:unit:watchAll": "jest --watchAll",
|
|
"serve:test:coverage": "quasar serve test/jest/coverage/lcov-report/ --port 8788",
|
|
"concurrently:dev:jest": "concurrently \"quasar dev\" \"jest --watch\"",
|
|
"test:e2e": "cross-env NODE_ENV=test start-test \"quasar dev\" http-get://localhost:9000 \"cypress open\"",
|
|
"test:e2e:ci": "cross-env NODE_ENV=test start-test \"quasar dev\" http-get://localhost:9000 \"cypress run\"",
|
|
"test:component": "cross-env NODE_ENV=test cypress open-ct",
|
|
"test:component:ci": "cross-env NODE_ENV=test cypress run-ct"
|
|
},
|
|
"dependencies": {
|
|
"@quasar/extras": "^1.0.0",
|
|
"pinia": "^2.0.18",
|
|
"quasar": "^2.6.0",
|
|
"vue": "^3.0.0",
|
|
"vue-router": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@quasar/app-vite": "^1.0.0",
|
|
"@quasar/quasar-app-extension-testing": "^2.0.4",
|
|
"@quasar/quasar-app-extension-testing-unit-jest": "^3.0.0-alpha.10",
|
|
"@quasar/quasar-app-extension-testing-unit-vitest": "^0.1.2",
|
|
"@types/node": "^12.20.21",
|
|
"@typescript-eslint/eslint-plugin": "^5.10.0",
|
|
"@typescript-eslint/parser": "^5.10.0",
|
|
"@vitest/ui": "^0.15.0",
|
|
"autoprefixer": "^10.4.2",
|
|
"eslint": "^8.10.0",
|
|
"eslint-config-prettier": "^8.1.0",
|
|
"eslint-plugin-cypress": "^2.11.3",
|
|
"eslint-plugin-jest": "^25.2.2",
|
|
"eslint-plugin-vue": "^9.0.0",
|
|
"majestic": "^1.7.0",
|
|
"prettier": "^2.5.1",
|
|
"typescript": "^4.5.4",
|
|
"vitest": "^0.15.0",
|
|
"@vue/test-utils": "^2.0.0"
|
|
},
|
|
"engines": {
|
|
"node": "^18 || ^16 || ^14.19",
|
|
"npm": ">= 6.13.4",
|
|
"yarn": ">= 1.21.1"
|
|
}
|
|
} |