-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.27 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": "spikefinder",
"version": "1.0.0",
"description": "benchmarking app for spike detection",
"main": "index.js",
"scripts": {
"build": "browserify client/index.js -t envify -o client/bundle.js",
"serve": "node server/app.js",
"start": "watchify client/index.js -o client/bundle.js & node server/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeneuro/spikefinder.git"
},
"keywords": [
"neuron",
"app",
"leaderboard",
"benchmark"
],
"author": "freeman-lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeneuro/spikefinder/issues"
},
"homepage": "https://github.com/codeneuro/spikefinder#readme",
"devDependencies": {
"watchify": "^3.7.0",
"browserify": "^13.1.0"
},
"dependencies": {
"body-parser": "^1.15.2",
"browser-request": "^0.3.3",
"csv-parser": "^1.11.0",
"d3-scale": "^1.0.2",
"envify": "^3.4.1",
"express": "^4.14.0",
"hxdx": "^1.0.0",
"jsonschema": "^1.1.0",
"lodash": "^4.14.1",
"minidux": "^1.0.1",
"mongoose": "^4.5.7",
"neat-csv": "^2.1.0",
"parse-github-url": "^0.3.1",
"redux": "^3.5.2",
"s3": "^4.4.0",
"string-to-stream": "^1.1.0",
"timestamp": "0.0.1",
"tmp": "0.0.29"
}
}