-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.68 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
{
"name": "arches_lingo",
"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 arches_lingo/src --check",
"prettier:fix": "prettier arches_lingo/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"
},
"devDependencies": {
"arches-dev-dependencies": "archesproject/arches-dev-dependencies#dev/8.0.x"
},
"dependencies": {
"arches": "archesproject/arches#dev/8.0.x",
"vue-router": "^4.4.3"
},
"nodeModulesPaths": {},
"overrides": {
"moment-timezone": "^0.5.45",
"nomnom": "npm:@gerhobbelt/nomnom",
"rimraf": "^5.0.7",
"underscore": "^1.13.6"
}
}