-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 4.8 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
{
"name": "alpheios-core",
"version": "1.0.2",
"private": false,
"author": "The Alpheios Project, Ltd.",
"license": "ISC",
"scripts": {
"set-node-build-deps": "npm i -D git://github.com/alpheios-project/node-build.git#v3 && npx [email protected] alpheios-node-build --dev --only-peers && npm un alpheios-node-build",
"bootstrap": "npx lerna bootstrap --hoist --nohoist=eslint-config-standard --nohoist=coveralls",
"clean": "npx lerna clean --yes && npx shx rm -rf ./node_modules",
"list-mismatching-deps": "npx syncpack list-mismatches; exit(0)",
"list-outdated-deps": "npx lerna exec --no-bail npm outdated",
"fix-mismatching-deps": "npx syncpack fix-mismatches",
"build": "npm run build-l10n && npm run build-data-models && npm run build-res-client && npm run build-wordlist && npm run build-client-adapters && npm run build-inflection-tables && npm run build-components",
"test": "npm --prefix packages/l10n run test-no-coverage && npm --prefix packages/data-models run test-no-coverage && npm --prefix packages/res-client run test-no-coverage && npm --prefix packages/wordlist run test-no-coverage && npm --prefix packages/client-adapters run test-no-coverage && npm --prefix packages/inflection-tables run test-no-coverage && npm --prefix packages/components run test-no-coverage",
"test-ci": "npm --prefix packages/l10n run test-no-coverage && npm --prefix packages/data-models run test-no-coverage && npm --prefix packages/res-client run test-no-coverage && npm --prefix packages/wordlist run test-no-coverage && npm --prefix packages/client-adapters run test-no-coverage && npm --prefix packages/inflection-tables run test-no-coverage && npm --prefix packages/components run test-no-coverage",
"build-l10n": "npm --prefix packages/l10n run build",
"test-l10n": "npm --prefix packages/l10n run test",
"build-data-models": "npm --prefix packages/data-models run build",
"test-data-models": "npm --prefix packages/data-models run test",
"build-res-client": "npm --prefix packages/res-client run build",
"test-res-client": "npm --prefix packages/res-client run test",
"build-wordlist": "npm --prefix packages/wordlist run build",
"test-wordlist": "npm --prefix packages/wordlist run test",
"build-client-adapters": "npm --prefix packages/client-adapters run build",
"test-client-adapters": "npm --prefix packages/client-adapters run test",
"build-inflection-tables": "npm --prefix packages/inflection-tables run build",
"test-inflection-tables": "npm --prefix packages/inflection-tables run test",
"build-components": "npm --prefix packages/components run build",
"test-components": "npm --prefix packages/components run test",
"conventional-commit": "npx git-cz",
"version-set-major-dev": "npx lerna version major --no-push",
"version-set-minor-dev": "npx lerna version minor --no-push",
"version-set-patch-dev": "npx lerna version patch --no-push",
"github-build": "node --experimental-modules --experimental-json-modules ./github-build.mjs"
},
"devDependencies": {
"@actions/core": "^1.2.6",
"@babel/core": "^7.12.9",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/register": "^7.10.3",
"@vue/compiler-sfc": "^3.0.0-beta.15",
"archiver": "^4.0.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"bytes": "^3.1.0",
"chalk": "^4.1.0",
"command-line-args": "^5.1.1",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.15.0",
"eslint-plugin-import": "^2.22.1",
"fibers": "^5.0.0",
"fs-extra": "^9.0.1",
"git-branch": "^2.0.1",
"html-webpack-plugin": "^5.2.0",
"imagemin": "^7.0.1",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^8.0.0",
"inspectpack": "^4.5.2",
"lerna": "^3.22.1",
"mini-css-extract-plugin": "^1.3.2",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"path": "^0.12.7",
"postcss": "^8.2.6",
"postcss-import": "^14.0.0",
"postcss-loader": "^5.0.0",
"postcss-safe-important": "^1.2.0",
"postcss-scss": "^3.0.4",
"sass": "^1.26.9",
"sass-loader": "^11.0.1",
"source-map-loader": "^2.0.1",
"url-loader": "^4.1.0",
"vue": "^2.6.12",
"vue-loader": "^15.9.5",
"vue-style-loader": "^4.1.2",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.12",
"vue-template-loader": "^1.1.0",
"webpack": "^5.20.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-merge": "^4.2.2"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}