-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.91 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@nokori/app",
"version": "0.0.11",
"main": "dist-electron/main.js",
"scripts": {
"dev": "rimraf dist && vite --config ./vite.app.config.ts --force",
"build": "run-p type-check build-only",
"build-only": "rimraf dist && vite build --mode production --config ./vite.app.config.ts",
"build-qa": "rimraf dist && vite build --mode qa --config ./vite.app.config.ts",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.cjs,.ts --quiet --ignore-path .gitignore",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
"release": "bumpp -x \"npm run changelog\" --all --commit --tag --push",
"electron-dev": "vite --config ./vite.electron.config.ts",
"electron-build": "rimraf dist && rimraf dist-electron && vite build --mode production --config ./vite.electron.config.ts",
"electron-make": "rimraf out && npm run electron-build && electron-forge make",
"electron-publish": "electron-forge publish"
},
"dependencies": {
"-": "^0.0.1",
"@babel/core": "^7.21.4",
"@babel/parser": "^7.21.4",
"@codemirror/lang-html": "^6.4.3",
"@codemirror/lang-javascript": "^6.0.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-sql": "^6.3.0",
"@codemirror/lang-xml": "^6.0.2",
"@codemirror/language-data": "^6.2.0",
"@codemirror/legacy-modes": "^6.3.2",
"@codemirror/state": "^6.2.0",
"@codemirror/stream-parser": "^0.19.9",
"@codemirror/theme-one-dark": "^6.0.0",
"@codemirror/view": "6.x",
"@gtm-support/vue-gtm": "^2.0.0",
"@headlessui/vue": "^1.7.10",
"@heroicons/vue": "^2.0.16",
"@nokori/js-sdk": "^1.3.16",
"@nokori/vue": "^0.0.29",
"@stripe/stripe-js": "^1.41.0",
"@tailwindcss/forms": "^0.5.3",
"@vuelidate/core": "^2.0.0",
"@vuelidate/validators": "^2.0.0",
"@vueuse/core": "^9.4.0",
"axios": "^1.1.3",
"body-scroll-lock": "^4.0.0-beta.0",
"codemirror": "^6.0.1",
"date-fns": "^2.29.3",
"echarts": "^5.4.1",
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^8.1.0",
"floating-vue": "^2.0.0-beta.19",
"lodash-es": "^4.17.21",
"nanoid": "^4.0.0",
"node": "16.14",
"normalize.css": "^8.0.1",
"npm": "^9.6.2",
"pinia": "^2.0.23",
"prettier": "^2.8.7",
"prettier-plugin-xml": "^0.1.0",
"shiki-es": "^0.2.0",
"splitpanes": "^3.1.5",
"sql-formatter": "^10.2.0",
"vue": "^3.2.47",
"vue-codemirror": "^6.1.1",
"vue-datepicker-next": "^1.0.2",
"vue-echarts": "^6.5.4",
"vue-gtag": "^2.0.1",
"vue-router": "^4.1.3",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.4",
"@electron-forge/maker-deb": "^6.0.4",
"@electron-forge/maker-dmg": "^6.0.4",
"@electron-forge/maker-rpm": "^6.0.4",
"@electron-forge/maker-squirrel": "^6.0.4",
"@electron-forge/maker-zip": "^6.0.4",
"@electron-forge/publisher-github": "^6.0.4",
"@rushstack/eslint-patch": "^1.1.0",
"@tailwindcss/typography": "^0.5.9",
"@types/body-scroll-lock": "^3.1.0",
"@types/date-fns": "^2.6.0",
"@types/echarts": "^4.9.16",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.14.1",
"@types/prettier": "^2.7.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.13",
"bumpp": "^8.2.1",
"conventional-changelog-cli": "^2.2.2",
"electron": "^21.3.0",
"eslint": "^8.5.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-vue": "^9.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"rimraf": "^3.0.2",
"sass": "^1.54.1",
"sass-mq": "^6.0.0",
"tailwindcss": "^3.2.7",
"typescript": "~4.7.4",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.3.9",
"vite-plugin-electron": "^0.11.1",
"vite-plugin-remove-console": "^2.1.0",
"vue-tsc": "^1.0.11"
}
}