This repository has been archived by the owner on Aug 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.67 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
{
"name": "ns3-bgp-netgen-ng",
"version": "0.0.1",
"description": "The next generation script generator for ns3-bgp.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node_modules/.bin/webpack-dev-server --config webpack.dev.js --mode development --open",
"build": "node_modules/.bin/webpack --config webpack.prod.js --mode production",
"serve": "node_modules/.bin/http-server ./dist",
"build-cli": "node_modules/.bin/babel ./script -d ./cli-dist && echo 'Done. use \"node cli-dist/netgen-cli.js\" to invoke cli.'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nat-lab/ns3-bgp-netgen-ng.git"
},
"author": "Honghao Zeng <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nat-lab/ns3-bgp-netgen-ng/issues"
},
"homepage": "https://github.com/nat-lab/ns3-bgp-netgen-ng#readme",
"dependencies": {
"bootstrap": "^3.4.1",
"codemirror": "^5.46.0",
"djv": "^2.1.2",
"json-beautify": "^1.1.0",
"react": "^16.8.6",
"react-codemirror2": "^6.0.0",
"react-dom": "^16.8.6",
"react-jsonschema-form": "^1.5.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^2.0.2",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.0",
"webpack-merge": "^4.2.1"
}
}