-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "bst-graph",
"version": "0.1.0",
"private": true,
"description": "Generate Pokémon base stat total charts",
"author": {
"name": "Nick Shockey",
"email": "shockeynj@gmail.com"
},
"homepage": "https://github.com/njshockey/bst-graph",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/njshockey/bst-graph.git"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"dependencies": {
"axios": "^1.6.6",
"axios-cache-interceptor": "^1.5.1",
"dom-to-svg": "^0.12.2",
"pokenode-ts": "^1.20.0",
"vue": "^3.4.15"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"autoprefixer": "^10.4.17",
"daisyui": "^3.9.3",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.20.1",
"postcss": "^8.4.33",
"prettier": "3.2.4",
"tailwindcss": "^3.4.1",
"typescript": "~5.3.3",
"vite": "^5.0.12",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^1.8.27"
}
}