forked from nxtgrid/nxt-topup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.34 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
{
"name": "nxt-topup",
"version": "0.0.2",
"private": true,
"author": {
"name": "Bobby Bol",
"email": "studio.innua@gmail.com"
},
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/nxtgrid/nxt-topup.git"
},
"bugs": {
"url": "https://github.com/nxtgrid/nxt-topup/issues"
},
"homepage": "https://github.com/nxtgrid/nxt-topup#readme",
"type": "module",
"scripts": {
"dev": "vite",
"start": "npm run dev",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . ",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"dependencies": {
"ky": "^1.8.1",
"normalize.css": "^8.0.1",
"nxt-shared": "git+https://github.com/nxtgrid/nxt-ui-components.git",
"pinia": "^3.0.3",
"pinia-plugin-persistedstate": "^4.3.0",
"vue": "^3.5.17",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@vitejs/plugin-vue": "^5.2.3",
"eslint": "^9.22.0",
"eslint-plugin-vue": "~10.0.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"rollup-plugin-visualizer": "^6.0.3",
"sass": "^1.89.2",
"vite": "^6.2.4",
"vite-plugin-pwa": "^1.0.0",
"vite-plugin-vue-devtools": "^7.7.2"
},
"lint-staged": {
"*.{js,vue}": "eslint --max-warnings=0"
}
}