-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
67 lines (67 loc) · 2.28 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
{
"name": "microdraw",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node ./bin/www",
"debug": "node --inspect-brk ./bin/www",
"lint": "eslint",
"test": "cross-env MONGODB_TEST='127.0.0.1:27017/circleci_test' node test.js",
"mocha": "cross-env MONGODB_TEST='127.0.0.1:27017/circleci_test' mocha test/mocha.test.js",
"mocha-brk": "cross-env MONGODB_TEST='127.0.0.1:27017/circleci_test' mocha test/mocha.test.js --inspect-brk --timeout=10000000",
"test-e2e": "cross-env MONGODB_TEST='127.0.0.1:27017/circleci_test' LOCALSIGNIN=true mocha ./test/e2e/runner.js ./test/e2e/*.spec.js --timeout=100000",
"prepare": "husky install",
"build-pages": "webpack --mode production --config webpack.pages.config.js && cp app/views/scripts/dist/*-page.js app/public/js/pages/",
"dev-pages": "webpack --mode development --config webpack.pages.config.js && cp app/views/scripts/dist/*-page.js app/public/js/pages/"
},
"dependencies": {
"body-parser": "^1.18.3",
"cross-env": "^7.0.3",
"dateformat": "^3.0.2",
"debug": "^4.1.1",
"dompurify": "^2.2.6",
"express": "^4.16.3",
"jsdom": "^16.4.0",
"monk": "^7.1.1",
"morgan": "^1.9.1",
"multer": "^1.4.5-lts.1",
"mustache-express": "latest",
"neuroweblab": "github:neuroanatomy/neuroweblab",
"nwl-components": "^0.0.15",
"passport": "^0.4.0",
"passport-github": "latest",
"request": "^2.88.0",
"serve-favicon": "latest",
"vue": "^3.2.31"
},
"main": "app.js",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^6.6.0",
"eslint": "^8.9.0",
"html-webpack-plugin": "^5.5.0",
"http-terminator": "^3.0.4",
"husky": "^7.0.0",
"jpeg-js": "^0.4.3",
"lint-staged": "^13.0.3",
"mocha": "^6.1.4",
"mock-fs": "^4.5.0",
"nock": "^10.0.6",
"pixelmatch": "^5.2.1",
"pngjs": "^6.0.0",
"puppeteer": "^13.3.2",
"sinon": "^7.3.1",
"style-loader": "^3.3.1",
"webpack": "^5.69.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"author": "Roberto Toro <rto@braincatalogue.org> (https://neuroanatomy.github.io)",
"license": "GPL-3.0",
"description": ""
}