-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"name": "gtc-visualization",
"version": "1.0.0",
"description": "Online plotting tools for GTC.",
"main": "server.js",
"scripts": {
"test": "nodemon ./server/server.js",
"start": "node ./server-prod.js",
"pack-custom-plotly": "webpack --config custom-plotly/webpack.config.js",
"pack-server": "webpack --config webpack.config.js",
"pack": "npm install && npm run pack-custom-plotly && npm run pack-server && node ./util/pack.js"
},
"keywords": [
"Visualization"
],
"author": "Q. Zhong",
"license": "MIT",
"devDependencies": {
"css-loader": "^7.1.2",
"ify-loader": "^1.1.0",
"mathjax": "^3.2.2",
"nodemon": "^3.1.9",
"plotly.js": "3.0.1",
"transform-loader": "^0.2.4",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"ajv": "6.12.6",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pug": "^3.0.2"
}
}