-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.96 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.96 KB
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
{
"name": "arches_lingo",
"license": "AGPL-3.0-only",
"scripts": {
"build_development_unsafe": "cross-env webpack --config ./webpack/webpack.config.dev.js",
"build_development": "npm run eslint:check && npm run ts:check && cross-env webpack --config ./webpack/webpack.config.dev.js",
"build_production_unsafe": "cross-env webpack --config ./webpack/webpack.config.prod.js",
"build_production": "npm run eslint:check && npm run ts:check && cross-env webpack --config ./webpack/webpack.config.prod.js",
"build_test": "npm run eslint:check && npm run ts:check && cross-env webpack --config ./webpack/webpack.config.dev.js --env test=true",
"eslint:check": "eslint **/src",
"eslint:fix": "eslint --fix",
"eslint:fix:all": "npm run eslint:fix arches_lingo/src",
"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",
"prettier:fix:all": "npm run prettier:fix arches_lingo/src",
"ts:check": "vue-tsc --noEmit",
"ts:watch": "vue-tsc --watch --noEmit",
"start": "cross-env webpack serve --config ./webpack/webpack.config.dev.js",
"vitest": "vitest --run --coverage"
},
"devDependencies": {
"arches-dev-dependencies": "archesproject/arches-dev-dependencies#dev/8.1.x"
},
"dependencies": {
"@primevue/forms": "4.3.7",
"arches": "archesproject/arches#dev/8.1.x",
"arches-component-lab": "archesproject/arches-component-lab#main",
"pinia": "3.0.4",
"vue-router": "4.4.3"
},
"nodeModulesPaths": {},
"overrides": {
"moment-timezone": "^0.5.45",
"nomnom": "npm:@gerhobbelt/nomnom",
"rimraf": "^5.0.7",
"underscore": "^1.13.6"
}
}