This repository has been archived by the owner on Sep 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 147
/
package.json
72 lines (72 loc) · 2.29 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
{
"name": "code-notes",
"version": "1.2.4",
"author": "Laurent THIEBAULT <[email protected]>",
"description": "A simple code snippet manager for developers built with Electron 🚀",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lauthieb/code-notes.git"
},
"main": "background.js",
"scripts": {
"dev": "npm run serve",
"serve": "npm run electron:serve",
"build": "npm run electron:build",
"build:win": "vue-cli-service electron:build --win",
"build:mac": "vue-cli-service electron:build --mac",
"build:linux": "vue-cli-service electron:build --linux",
"test": "npm run test:unit",
"test:unit": "vue-cli-service test:unit",
"eslint": "npm run lint",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"dependencies": {
"@octokit/rest": "^17.6.0",
"axios": "^0.21.2",
"brace": "^0.11.1",
"buefy": "^0.8.17",
"color-hash": "^1.0.3",
"core-js": "^3.6.4",
"emmet": "^2.0.0",
"font-awesome": "^4.7.0",
"fs-extra": "^9.0.0",
"nedb": "^1.8.0",
"source-sans-pro": "^3.6.0",
"vue": "^2.6.11",
"vue-clipboard2": "^0.3.1",
"vue-router": "^3.3.2",
"vue-select": "^3.10.2",
"vuex": "^3.1.3",
"vue-js-modal": "^1.3.33"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.3.1",
"@vue/cli-plugin-eslint": "^4.3.1",
"@vue/cli-plugin-router": "^4.3.1",
"@vue/cli-plugin-unit-jest": "^4.3.1",
"@vue/cli-plugin-vuex": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.0.0-beta.31",
"babel-eslint": "^10.1.0",
"chromedriver": "^80.0.1",
"electron": "^8.2.4",
"eslint": "^6.7.2",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.2.2",
"geckodriver": "^1.19.1",
"node-sass": "^7.0.0",
"prettier": "^1.19.1",
"sass-loader": "^8.0.2",
"spectron": "^10.0.1",
"vue-cli-plugin-electron-builder": "2.0.0-beta.6",
"vue-template-compiler": "^2.6.11"
}
}