forked from corestate55/netoviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.16 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
{
"name": "netoviz",
"version": "0.2.0",
"description": "RFC8345-based Network Topology Visualizer",
"author": "corestate55",
"private": true,
"engines": {
"node": ">=14.x"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.mjs --watch server --exec \"babel-node --experimental-specifier-resolution=node\"",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production babel-node --experimental-specifier-resolution=node server/index.mjs",
"generate": "nuxt generate",
"format": "prettier --write '{components,layouts,lib,pages,server,store}/**/*.{js,mjs,vue}'",
"lint": "eslint --ext .js,.mjs,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --ext .js,.mjs,.vue --ignore-path .gitignore --fix .",
"doc": "jsdoc --configure .jsdocrc.json --readme README.md --package package.json",
"fig": "./bin/gen_fig.rb > fig/classes_js.plantuml && PLANTUML_LIMIT_SIZE=8192 plantuml fig/classes_js.plantuml",
"docker-build": "docker build -t netoviz/allinone ."
},
"dependencies": {
"@babel/node": "^7.22.10",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/dotenv": "^1.4.1",
"consola": "^2.15.3",
"cross-env": "^7.0.3",
"d3-drag": "^3.0.0",
"d3-fetch": "^3.0.1",
"d3-force": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-timer": "^3.0.1",
"d3-zoom": "^3.0.0",
"debounce": "^1.2.1",
"dotenv": "^16.3.1",
"express": "^4.18.1",
"google-protobuf": "^3.21.0",
"localStorage": "^1.0.4",
"nuxt": "^2.17.1",
"nuxt-env": "^0.1.0"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/eslint-parser": "^7.22.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.22.10",
"@nuxtjs/eslint-config": "^11.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/vuetify": "^1.12.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"foodoc": "0.0.9",
"jsdoc": "^3.6.11",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"prettier-config-standard": "^5.0.0"
}
}