-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.64 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
{
"name": "chess-com-insights",
"private": true,
"version": "2.7.3",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/thieleju/chess-com-insights"
},
"scripts": {
"prebuild": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test": "tsc && ts-mocha",
"test:junit": "tsc && ts-mocha --reporter mocha-junit-reporter --reporter-options mochaFile=tests/results.xml",
"cover": "npx c8 npm run test && npx c8 report --reporter html"
},
"dependencies": {
"@mdi/font": "7.4.47",
"luxon": "^3.5.0",
"vue": "^3.5.12",
"vuetify": "^3.7.3"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.26",
"@eslint/js": "^9.13.0",
"@types/chai": "^5.0.0",
"@types/chrome": "^0.0.279",
"@types/eslint__js": "^8.42.3",
"@types/jsdom": "^21.1.7",
"@types/jsdom-global": "^3.0.7",
"@types/luxon": "^3.4.2",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.8",
"@types/sinon": "^17.0.3",
"@types/webfontloader": "^1.6.38",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@vitejs/plugin-vue": "^5.1.4",
"c8": "^10.1.2",
"chai": "^5.1.1",
"eslint": "^9.13.0",
"jsdom": "^25.0.1",
"mocha": "^10.7.3",
"mocha-junit-reporter": "^2.2.1",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"source-map-support": "^0.5.21",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vite": "^5.4.1",
"vite-plugin-vuetify": "^2.0.4",
"vue-tsc": "^2.1.6"
}
}