-
-
Notifications
You must be signed in to change notification settings - Fork 257
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.33 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
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
{
"name": "masscode",
"productName": "massCode",
"version": "2.2.0",
"description": "A free and open source code snippets manager for developers",
"license": "AGPL-3.0",
"main": "build/src/main/index.js",
"scripts": {
"dev": "run-p dev:watch dev:vue-devtools",
"dev:watch": "tsc-watch -p tsconfig.electron.json --onFirstSuccess \"npm run dev:server\"",
"dev:server": "node build/scripts/dev-server.js",
"dev:vue-devtools": "vue-devtools",
"build": "npm run ts-check:vue && npm run build:ts && node build/scripts/build.js ",
"build:ts": "tsc -p tsconfig.electron.json",
"ts-check:vue": "vue-tsc --noEmit --skipLibCheck",
"lint": "eslint --ext .js,.ts,.vue . src",
"lint:fix": "eslint --ext .js,.ts,.vue . --fix src",
"release": "bumpp -c 'build: release v' -t",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepare": "husky install"
},
"repository": "https://github.com/massCodeIO/massCode",
"author": {
"name": "Anton Reshetov",
"url": "https://github.com/antonreshetov"
},
"lint-staged": {
"*.{js,ts,vue}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@iconscout/unicons": "^4.0.1",
"@masscode/json-server": "^0.18.0",
"@sipec/vue3-tags-input": "^3.0.4",
"@types/universal-analytics": "^0.4.5",
"@vueuse/core": "^8.1.2",
"ace-builds": "^1.4.14",
"axios": "^0.26.1",
"date-fns": "^2.28.0",
"electron-store": "^8.0.1",
"fs-extra": "^10.0.1",
"highlight.js": "^11.5.1",
"interactjs": "^1.10.11",
"lodash": "^4.17.21",
"lowdb": "^3.0.0",
"markdown-it": "^12.3.2",
"markdown-it-link-attributes": "^4.0.0",
"mitt": "^3.0.0",
"nanoid": "^3.3.1",
"pinia": "^2.0.12",
"sanitize-html": "^2.7.0",
"universal-analytics": "^0.5.3",
"vercel-toast": "^1.5.5",
"vue": "^3.2.26",
"vue-router": "^4.0.12",
"vue3-perfect-scrollbar": "^1.6.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@tsconfig/node14": "^1.0.1",
"@types/ace": "^0.0.48",
"@types/estree": "^0.0.51",
"@types/lowdb": "^1.0.11",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/node": "^17.0.4",
"@types/prettier": "^2.6.0",
"@types/sanitize-html": "^2.6.2",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"@vitejs/plugin-vue": "^2.2.4",
"@vue/cli": "^4.5.15",
"@vue/devtools": "^6.1.3",
"@vue/eslint-config-standard": "^6.1.0",
"bumpp": "^7.1.1",
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
"electron": "^16.0.5",
"electron-builder": "^22.14.5",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^7.0.0",
"lint-staged": "^12.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"sass": "^1.45.1",
"tsc-watch": "^4.6.0",
"typescript": "^4.5.4",
"unplugin-auto-import": "^0.6.6",
"unplugin-icons": "^0.13.4",
"unplugin-vue-components": "^0.18.1",
"vite": "^2.8.6",
"vue-tsc": "^0.30.0"
}
}