-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.98 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
{
"name": "disco",
"license": "AGPL-3.0-only",
"scripts": {
"build_development": "npm run eslint:check && npm run ts:check && cross-env NODE_OPTIONS=--max-old-space-size=2048 webpack --config ./webpack/webpack.config.dev.js",
"build_production": "npm run eslint:check && npm run ts:check && cross-env NODE_OPTIONS=--max-old-space-size=2048 NODE_ENV=production webpack --config ./webpack/webpack.config.prod.js",
"build_test": "npm run eslint:check && npm run ts:check && cross-env NODE_OPTIONS=--max-old-space-size=2048 webpack --config ./webpack/webpack.config.dev.js --env test=true",
"eslint:check": "eslint **/src",
"eslint:fix": "eslint **/src --fix",
"eslint:watch": "nodemon --watch . --ext ts,vue --exec npm run --silent eslint:check",
"gettext:extract": "vue-gettext-extract",
"gettext:compile": "vue-gettext-compile",
"prettier:check": "prettier disco/src --check",
"prettier:fix": "prettier disco/src --write",
"ts:check": "vue-tsc --noEmit",
"ts:watch": "vue-tsc --watch --noEmit",
"start": "cross-env NODE_OPTIONS=--max-old-space-size=2048 webpack serve --config ./webpack/webpack.config.dev.js",
"vitest": "vitest --run --coverage"
},
"dependencies": {
"@uppy/aws-s3": "3.6.2",
"@uppy/core": "3.13.0",
"@uppy/dashboard": "3.9.0",
"@uppy/drag-drop": "3.1.0",
"@uppy/progress-bar": "3.1.1",
"@uppy/companion-client": "3.1.3",
"arches": "archesproject/arches#dev/7.6.x",
"arches_for_science": "archesproject/arches-for-science#76-upgrade"
},
"devDependencies": {
"arches-dev-dependencies": "archesproject/arches-dev-dependencies#dev/7.6.x"
},
"nodeModulesPaths": {
},
"overrides": {
"glob": "8.1.0",
"minimatch": "5.1.2",
"moment-timezone": "^0.5.45",
"nomnom": "npm:@gerhobbelt/nomnom",
"rimraf": "^5.0.7",
"underscore": "^1.13.6"
}
}