forked from 12ff54e/GTC-Visualization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.09 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
{
"name": "gtc-visualization",
"version": "1.0.0",
"description": "Online plotting tools for GTC.",
"main": "server.js",
"scripts": {
"test": "nodemon ./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-server && cd .. && zip -9rFS GTC-Visualization/GTC-Visualization.zip GTC-Visualization/public GTC-Visualization/views GTC-Visualization/.env_example GTC-Visualization/LICENSE GTC-Visualization/package.json GTC-Visualization/README.md GTC-Visualization/server-prod.js"
},
"keywords": [
"Visualization"
],
"author": "Q. Zhong",
"license": "MIT",
"devDependencies": {
"ify-loader": "^1.1.0",
"mathjax": "^2.7.7",
"nodemon": "^2.0.2",
"plotly.js": "^1.58.4",
"transform-loader": "^0.2.4",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"ajv": "6.9.1",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pug": "^3.0.2"
}
}