-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.41 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
{
"name": "dendra-web-ui",
"version": "0.0.0",
"description": "Dendra public facing web site and application.",
"author": "J. Scott Smith",
"private": true,
"scripts": {
"babel-workers": "babel src/workers -d src/static/workers --presets=@nuxt/babel-preset-app",
"dev": "nuxt",
"dev-cuahsi": "nuxt --config-file nuxt.config.cuahsi.js",
"dev-edge": "cross-env API_PATH=/v2 API_URI=https://api.edge.dendra.science nuxt",
"dev-local": "cross-env API_URI=http://192.168.1.60:30080 nuxt",
"dev-live": "cross-env API_PATH=/v2 API_URI=https://api.dendra.science nuxt",
"dev-preview": "cross-env API_PATH=/v2 API_URI=http://api.preview.dendra.science nuxt",
"dev2": "cross-env NODE_ENV=development nodemon src/server/index.js --watch src/server",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"generate-cuahsi": "nuxt generate --config-file nuxt.config.cuahsi.js",
"serve": "nuxt serve",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint": "npm run lint:js",
"precommit": "npm run lint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@casl/ability": "^5.4.4",
"@dendra-science/console-logger": "0.0.1",
"@feathersjs/authentication-client": "^1.0.11",
"@feathersjs/feathers": "^3.3.1",
"@feathersjs/socketio-client": "^1.2.1",
"@nuxtjs/vuetify": "^1.12.3",
"ajv": "^6.12.6",
"express": "^4.18.2",
"feathers-hooks-common": "^4.20.7",
"feathers-vuex": "github:DendraScience/feathers-vuex#jss-hotfix",
"highcharts": "^10.3.3",
"load-google-maps-api": "^2.0.2",
"lodash": "^4.17.21",
"mathjs": "^6.6.5",
"moment": "^2.30.1",
"nuxt": "^2.17.3",
"nuxt-compress": "^5.0.0",
"plausible-tracker": "^0.3.8",
"socket.io-client": "^2.5.0",
"validator": "^13.11.0",
"vee-validate": "^3.4.15"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@mdi/js": "^6.9.96",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.1.0",
"@vue/test-utils": "^1.3.6",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"sass-loader": "^10.5.2",
"worker-loader": "github:DendraScience/worker-loader#jss-hotfix"
}
}