-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.84 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.84 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
{
"name": "omm-server",
"version": "0.10.0",
"description": "OpenMonkeyMind",
"author": "Daniel Schreij",
"contributors": [
"Sebastiaan Mathôt",
"Kristian Lange",
"Blazej Baczkowski"
],
"private": true,
"main": "electron.js",
"scripts": {
"serve:dev": "npm run dev",
"dev": "nodemon --watch app --watch config --watch .env --watch start -x node server.js",
"build": "cross-env NODE_ENV=production node ./ace nuxtbuild",
"start": "cross-env NODE_ENV=production node server.js",
"electron": "cross-env NODE_ENV=production electron .",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "jest",
"docker-build": "npm run build && docker build -f docker/Dockerfile .",
"release": "scripts/release.sh"
},
"dependencies": {
"@adonisjs/ace": "^5.1.0",
"@adonisjs/auth": "^3.2.0",
"@adonisjs/bodyparser": "^2.3.0",
"@adonisjs/cors": "^1.0.2",
"@adonisjs/fold": "^4.1.0",
"@adonisjs/framework": "^5.0.13",
"@adonisjs/ignitor": "^2.0.8",
"@adonisjs/lucid": "^6.3.0",
"@adonisjs/mail": "^3.1.0",
"@adonisjs/persona": "^1.0.5",
"@adonisjs/session": "^1.1.0",
"@adonisjs/shield": "^1.1.0",
"@adonisjs/validator": "^5.1.0",
"@adonisjs/vow": "^1.0.17",
"@nuxtjs/auth": "^4.9.1",
"@nuxtjs/axios": "^5.13.1",
"@nuxtjs/markdownit": "^2.0.0",
"@vuex-orm/core": "^0.36.3",
"@vuex-orm/plugin-axios": "^0.9.4",
"adonis-bumblebee": "^2.2.0",
"adonis-swagger": "^1.2.9",
"cross-env": "^7.0.3",
"date-fns": "^2.20.1",
"flat": "^5.0.2",
"fuse.js": "^6.6.2",
"js-yaml": "^3.14.1",
"mysql2": "^2.2.5",
"nuxt": "^2.15.4",
"nuxt-i18n": "^6.24.0",
"sqlite3": "^5.0.2",
"swagger-jsdoc": "^6.1.0",
"validator": "^13.5.2",
"vue-fragment": "1.5.1",
"vue-smooth-reflow": "^0.1.12",
"vuedraggable": "^2.24.3",
"vuex": "^3.6.2",
"vuex-pathify": "^1.4.5",
"vuex-router-sync": "^5.0.0",
"workerpool": "^6.1.4",
"xlsx": "^0.16.9"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@mdi/font": "^5.9.55",
"@nuxtjs/eslint-config": "^5.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/vuetify": "^1.11.3",
"@vue/test-utils": "^1.1.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"electron": "^11.4.2",
"eslint": "^7.24.0",
"eslint-plugin-nuxt": "^2.0.0",
"faker": "^5.5.3",
"flush-promises": "^1.0.2",
"jest": "^26.6.3",
"jest-serializer-vue-tjw": "^3.18.0",
"jest-transform-stub": "^2.0.0",
"nodemon": "^2.0.7",
"openapi-types": "^8.0.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4",
"vue-jest": "^3.0.7"
}
}