-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.25 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
66
67
68
69
70
71
72
73
74
{
"name": "starry-digitizer",
"version": "0.16.1",
"type": "module",
"files": [
"library-build/dist"
],
"main": "./library-build/dist/index.umd.cjs",
"module": "./library-build/dist/index.js",
"exports": {
".": {
"import": "./library-build/dist/index.js",
"require": "./library-build/dist/index.umd.cjs"
},
"./styles": {
"import": "./library-build/dist/style.css"
}
},
"scripts": {
"dev": "vite --host",
"app-prod-build": "cross-env VITE_APP_GITHUB_RUN_NUMBER=$GITHUB_RUN_NUMBER vite build",
"app-dev-build": "cross-env VITE_APP_GITHUB_RUN_NUMBER=$GITHUB_RUN_NUMBER vite build --mode development",
"lib-build": "vite build -c 'vite.library.config.js'",
"preview": "vite preview",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test": "jest",
"test:coverage": "jest --coverage",
"coverage:report": "browser-sync start --server \"coverage/lcov-report\"",
"coverage": "npm run test:coverage && npm run coverage:report",
"lint": "vue-tsc"
},
"dependencies": {
"@handsontable/vue3": "^13.1.0",
"@mdi/font": "^7.2.96",
"browser-sync": "^3.0.2",
"colorthief": "^2.4.0",
"curve-interpolator": "^3.3.0",
"handsontable": "^13.1.0",
"vue": "^3.3.4",
"vuetify": "^3.3.13"
},
"devDependencies": {
"@babel/preset-env": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@sentry/tracing": "^7.68.0",
"@sentry/vue": "^7.68.0",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/test-utils": "^2.4.1",
"@vue/vue3-jest": "^29.2.6",
"babel-jest": "^29.6.4",
"cross-env": "^7.0.3",
"cypress": "^13.1.0",
"cypress-file-upload": "^5.0.8",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"eslint-plugin-vuetify": "^2.0.5",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"prettier": "^3.0.3",
"sass": "^1.67.0",
"ts-jest": "^29.1.1",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vue-tsc": "^1.8.5"
}
}