-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.21 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.21 KB
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
{
"name": "up-for-grabs.net",
"version": "1.0.0",
"main": "index.js",
"description": "Tooling for up-for-grabs.net development",
"repository": "https://github.com/up-for-grabs/up-for-grabs.net",
"license": "MIT",
"scripts": {
"check": "tsc",
"eslint-check": "eslint --print-config javascripts/main.js | eslint-config-prettier-check",
"lint": "eslint javascripts/*.js tests/**/*.js",
"lint-fix": "eslint --fix javascripts/*.js tests/**/*.js",
"lint-new": "eslint -c eslint-new.config.mjs src/**/*.astro src/**/*.vue *.mjs src/**/*.ts",
"lint-new-fix": "eslint -c eslint-new.config.mjs --fix src/**/*.astro src/**/*.vue *.mjs src/**/*.ts",
"prettier": "prettier --check .",
"prettier-fix": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"engines": {
"node": ">=24",
"npm": ">=11"
},
"dependencies": {
"@tanstack/vue-query": "^5.97.0",
"amdefine": ">=0.1.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/vue": "^6.0.1",
"@babel/core": "^7.29.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/node": "^25",
"@types/showdown": "^2.0.6",
"@types/underscore": "^1.13.0",
"@typescript-eslint/parser": "^8.58.1",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/coverage-v8": "^4.1.4",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/test-utils": "^2.4.6",
"astro": "^6.1.5",
"date-fns": "^4.1.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-vue": "^10.8.0",
"jsdom": "^29.0.2",
"msw": "^2.13.2",
"prettier": "^3.8.0",
"promise-polyfill": "^8.3.0",
"requirejs": "^2.3.8",
"showdown": "^2.1.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1",
"underscore": "^1.13.8",
"vite-plugin-babel": "^1.6.0",
"vite-plugin-commonjs": "^0.10.4",
"vitest": "^4.1.4",
"vitest-fetch-mock": "^0.4.5",
"vitest-localstorage-mock": "^0.1.2",
"vue": "^3.5.32",
"whatwg-fetch": "^3.6.20"
}
}