-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 915 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 915 Bytes
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": "synapse-connectome-explorer",
"version": "0.0.1",
"description": "SYNAPSE human connectome dashboard with a MongoDB-backed sample data API.",
"private": true,
"keywords": [
"connectome",
"mongodb",
"canvas",
"fsd"
],
"license": "MIT",
"author": "",
"scripts": {
"start": "node server/server.js",
"mongo": "mongod --dbpath ./mongo-data --port 27017 --bind_ip 127.0.0.1",
"seed": "node server/seed.js",
"frontend": "webpack serve --open --config webpack.config.dev.js",
"build": "webpack --config webpack.config.prod.js"
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mongodb": "^6.7.0"
},
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.6.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0"
}
}