-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 2.08 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
{
"name": "timed-report",
"version": "1.0.0",
"description": "",
"main": "src/index.html",
"scripts": {
"dev": "vite",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"test": "vitest --environment jsdom",
"test:unit": "npm run test",
"test:unit:ci": "npm run test -- --run",
"test:e2e": "PORT=5173 cypress open --e2e",
"test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.json --composite false",
"build": "run-p type-check build-only"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vhoyer/timedReport.git"
},
"keywords": [],
"author": "Vinícius Hoyer",
"license": "ISC",
"bugs": {
"url": "https://github.com/vhoyer/timedReport/issues"
},
"homepage": "https://vhoyer.github.io/timedReport/",
"dependencies": {
"@amplitude/analytics-browser": "^1.6.0",
"@frsource/cypress-plugin-visual-regression-diff": "^2.3.8",
"@rushstack/eslint-patch": "^1.2.0",
"@testing-library/cypress": "^8.0.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/vue": "^6.6.1",
"@types/autosize": "^4.0.1",
"@types/bootstrap": "^5.2.5",
"@types/jquery": "^3.5.14",
"@types/jsdom": "^20.0.0",
"@types/node": "^18.8.4",
"@types/testing-library__jest-dom": "^5.14.5",
"@vhoyer/lazy-let": "^1.0.0-4",
"@vitejs/plugin-vue": "^3.1.2",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.12",
"autosize": "^5.0.1",
"bootstrap": "^4.6.2",
"cypress": "^10.10.0",
"eslint": "^8.25.0",
"eslint-plugin-cypress": "^2.12.1",
"jquery": "^3.6.1",
"jsdom": "^20.0.1",
"npm-run-all": "^4.1.5",
"sass": "^1.55.0",
"start-server-and-test": "^1.14.0",
"typescript": "^4.8.4",
"vite": "^3.1.7",
"vitest": "^0.24.1",
"vue": "^3.2.40",
"vue-tsc": "^1.0.6"
}
}