-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "phypro-server",
"version": "0.1.0",
"description": "Full stack server for PhyPro",
"main": "index.js",
"scripts": {
"build": "mkdir -p public; node_modules/.bin/browserify src/index.js -o public/app.js",
"dev": "mkdir -p public; node_modules/.bin/watchify src/index.js -o public/app.js -v",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PhyPro/phypro-server.git"
},
"keywords": [
"bioinformatics",
"phypro"
],
"author": "Davi Ortega",
"license": "MIT",
"bugs": {
"url": "https://github.com/PhyPro/phypro-server/issues"
},
"homepage": "https://github.com/PhyPro/phypro-server#readme",
"dependencies": {
"body-parser": "^1.18.3",
"bootstrap": "^4.1.2",
"browserify": "^16.2.2",
"clipboard": "^2.0.1",
"d3": "^5.5.0",
"express": "^4.16.3",
"jquery": "^3.3.1",
"multer": "^1.3.1",
"popper.js": "^1.14.3",
"pug": "^2.0.3"
},
"devDependencies": {
"watchify": "^3.11.0"
}
}