-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "piratepx-web",
"version": "0.4.2",
"private": true,
"description": "Just a little analytics insight for your personal or indie project",
"homepage": "https://app.piratepx.com",
"bugs": "https://github.com/piratepx/app/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/piratepx/app.git"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "npm run lint:format && npm run lint:quality",
"lint:format": "prettier --check .",
"lint:format:fix": "prettier --write .",
"lint:quality": "eslint --ext .js,.vue .",
"lint:quality:fix": "eslint --ext .js,.vue --fix ."
},
"dependencies": {
"tailwindcss": "^1.9.6",
"vue": "^3.0.4",
"vue-router": "^4.0.1",
"vuex": "^4.0.0-rc.2"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.0.4",
"autoprefixer": "^9.8.6",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-vue": "^7.2.0",
"prettier": "2.2.1",
"vite": "^1.0.0-rc.13"
},
"engines": {
"node": "22.x",
"npm": "10.x"
}
}