forked from neuroanatomy/BrainBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.66 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "brainbox",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "PORT=3001 node ./bin/www",
"build-atlasmaker": "webpack --config webpack.atlasmaker.config.js && cp view/atlasMaker/dist/atlasMaker.js public/lib/atlasMaker.js",
"build-atlasmaker-tools": "webpack --config webpack.atlasmaker-tools.config.js && cp -r view/atlasMaker/dist/atlasMaker-tools public/lib/",
"build-brainbox": "webpack --config webpack.brainbox.config.js && cp view/brainbox/dist/brainbox.js public/lib/brainbox.js",
"build-pages": "webpack --config webpack.pages.config.js && cp view/brainbox/dist/*-page.js public/js/",
"build": "npm run build-atlasmaker && npm run build-atlasmaker-tools && npm run build-brainbox && npm run build-pages",
"mocha-test": "mocha ./test/runner.js test/unit/*.js test/integration/*.js",
"lint": "eslint .",
"test": "docker exec brainbox_web_1 /bin/bash -c 'cd /brainbox && npm run mocha-test'"
},
"dependencies": {
"async": "^2.0.1",
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"crypto": "1.0.1",
"dateformat": "^3.0.3",
"debug": "~3.1.0",
"dompurify": "^2.0.7",
"express": "~4.16.3",
"express-session": "^1.15.6",
"express-validator": "^5.0.3",
"fast-json-patch": "^2.0.7",
"file-type": "^7.6.0",
"fs": "0.0.1-security",
"http": "0.0.0",
"jdenticon": "^2.1.0",
"jpeg-js": "^0.3.3",
"jquery": "^3.4.1",
"jquery-ui": "^1.12.1",
"jsdom": "^11.6.2",
"keypress": "^0.2.1",
"md5": "^2.2.1",
"merge": ">=1.2.1",
"mongodb": "^3.3.4",
"morgan": "^1.9.1",
"multer": "^1.2.0",
"mustache-express": "^1.2.2",
"pako": "^1.0.10",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"request": "^2.83.0",
"serve-favicon": "~2.4.5",
"struct": "0.0.12",
"structjs": "git+https://[email protected]/neuroanatomy/structjs.git",
"tracer": "^0.8.11",
"url": "^0.11.0",
"validator": "^9.4.1",
"webpage": "^0.3.0",
"ws": "^5.1.0"
},
"devDependencies": {
"clean-webpack-plugin": "^0.1.19",
"connect-livereload": "^0.6.0",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^1.0.0",
"del": "^3.0.0",
"eslint": "^4.9.0",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"livereload": "^0.8.2",
"mocha": "^5.0.4",
"monk": "^7.1.1",
"pixelmatch": "^4.0.2",
"pngjs": "^3.4.0",
"puppeteer": "^1.20.0",
"style-loader": "^0.23.0",
"svg-inline-loader": "^0.8.0",
"url-loader": "^1.1.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.1.2",
"webpack-shell-plugin": "^0.5.0"
}
}