forked from neuroanatomy/BrainBox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.85 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "brainbox",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "nodemon ./bin/www",
"debug": "node --inspect-brk ./bin/www",
"build-atlasmaker": "webpack --mode production --config webpack.atlasmaker.config.js && cp view/atlasmaker/dist/atlasmaker.js public/lib/atlasmaker.js",
"build-atlasmaker-tools": "webpack --mode production --config webpack.atlasmaker-tools.config.js && cp -r view/atlasmaker/dist/atlasmaker-tools public/lib/",
"build-brainbox": "webpack --mode production --config webpack.brainbox.config.js && cp view/brainbox/dist/brainbox.js public/lib/brainbox.js",
"build-pages": "webpack --mode production --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",
"dev-atlasmaker": "webpack --mode production --config webpack.atlasmaker.config.js && cp view/atlasmaker/dist/atlasmaker.js public/lib/atlasmaker.js",
"dev-atlasmaker-tools": "webpack --mode production --config webpack.atlasmaker-tools.config.js && cp -r view/atlasmaker/dist/atlasmaker-tools public/lib/",
"dev-brainbox": "webpack --mode production --config webpack.brainbox.config.js && cp view/brainbox/dist/brainbox.js public/lib/brainbox.js",
"dev-pages": "webpack --mode production --config webpack.pages.config.js && cp view/brainbox/dist/*-page.js public/js/",
"dev": "npm run dev-atlasmaker && npm run dev-atlasmaker-tools && npm run dev-brainbox && npm run dev-pages",
"mocha-test-unit": "nyc mocha ./test/runner.js --exit test/unit/*.js",
"mocha-test": "nyc mocha --exit ./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.6.3",
"body-parser": "~1.18.2",
"chai-as-promised": "^7.1.1",
"compression": "^1.7.4",
"connect-mongo": "^4.4.1",
"cookie-parser": "^1.4.5",
"crypto": "1.0.1",
"dateformat": "^3.0.3",
"debug": "~3.1.0",
"dompurify": "^2.0.17",
"express": "^4.16.4",
"express-session": "^1.17.1",
"express-validator": "^5.3.1",
"fast-json-patch": "^2.2.1",
"file-type": "^7.6.0",
"fs": "0.0.1-security",
"http": "0.0.0",
"jdenticon": "^2.2.0",
"jpeg-js": "^0.4.0",
"jquery": "^3.5.0",
"jquery-ui": "^1.12.1",
"jsdom": "^11.6.2",
"keypress": "^0.2.1",
"md5": "^2.2.1",
"merge": ">=2.1.1",
"mocha-sinon": "^2.1.2",
"mongodb": "^3.5.7",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"mustache-express": "^1.3.0",
"neuroweblab": "github:neuroanatomy/neuroweblab",
"pako": "^1.0.11",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"request": "^2.88.2",
"serve-favicon": "~2.4.5",
"sinon": "^11.1.1",
"struct": "0.0.12",
"structjs": "git+https://[email protected]/neuroanatomy/structjs.git",
"tracer": "^0.8.15",
"url": "^0.11.0",
"validator": "^9.4.1",
"webpage": "^0.3.0",
"ws": "^6.2.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"clean-webpack-plugin": "^0.1.19",
"connect-livereload": "^0.6.1",
"copy-webpack-plugin": "^6.1.0",
"css-loader": "^1.0.1",
"del": "^3.0.0",
"eslint": "^4.19.1",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"livereload": "^0.9.3",
"mocha": "^7.1.2",
"monk": "^7.2.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"pixelmatch": "^4.0.2",
"pngjs": "^3.4.0",
"puppeteer": "^8.0.0",
"rimraf": "^3.0.2",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.2",
"url-loader": "^1.1.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webworkify-webpack": "^2.1.5"
}
}