-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
{
"name": "tins-frontend",
"version": "1.0.0",
"description": "Front-end code for 'TINS is not Speedhack', a 72h Game Jam by and for the allegro community.",
"main": "index.js",
"type": "module",
"scripts": {
"clean": "rm -r static/* static/.??*",
"build": "vite build",
"dev": "vite build --watch --mode development",
"lint": "eslint \"{src,test}/**/*.{js,ts,vue}\"",
"test": "vitest"
},
"author": "Martijn 'Amarillion' van Iersel",
"license": "MIT",
"respository": "https://github.com/amarillion/tins-competition-website.git",
"dependencies": {
"@fortawesome/fontawesome-free": "6.7.2",
"@reduxjs/toolkit": "2.2.5",
"@vaadin/router": "2.0.0",
"js-cookie": "3.0.5",
"linkify-html": "4.2.0",
"vue": "3.5.13"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.19.1",
"@vitejs/plugin-vue": "5.2.1",
"@vue/test-utils": "2.4.6",
"eslint": "8.57.0",
"eslint-plugin-vue": "9.32.0",
"fetch-mock": "12.2.0",
"jsdom": "26.0.0",
"vite": "6.0.7",
"vite-plugin-compression2": "1.3.3",
"vitest": "2.1.8"
}
}