-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
80 lines (80 loc) · 2.81 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
{
"private": true,
"name": "@uiengine/monorepo",
"description": "UIengine Monorepo",
"license": "MIT",
"author": "Dennis Reimann <[email protected]> (https://dennisreimann.de)",
"homepage": "https://github.com/dennisreimann/uiengine",
"bugs": "https://github.com/dennisreimann/uiengine/issues",
"funding": "https://github.com/dennisreimann/uiengine?sponsor=1",
"repository": {
"type": "git",
"url": "ssh://[email protected]/dennisreimann/uiengine.git"
},
"dependencies": {
"@yarnpkg/pnpify": "4.1.3"
},
"devDependencies": {
"@lerna-lite/cli": "3.10.0",
"@lerna-lite/publish": "3.10.0",
"@uiengine/adapter-html": "workspace:*",
"@uiengine/cli": "workspace:*",
"@uiengine/core": "workspace:*",
"babel-plugin-syntax-jsx": "6.18.0",
"c8": "10.1.2",
"cross-env": "7.0.3",
"ejs": "3.1.10",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-node": "0.3.9",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.12.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-vue": "9.30.0",
"fs-extra": "11.2.0",
"html-minifier": "4.0.0",
"mocha": "10.8.2",
"mocha-lcov-reporter": "1.3.0",
"rimraf": "6.0.1",
"standard": "17.1.2",
"tslib": "2.8.1",
"uglify-js": "3.19.3",
"vue-template-compiler": "2.7.16",
"webpack": "5.96.1",
"webpack-cli": "5.1.4"
},
"scripts": {
"deps": "yarn upgrade-interactive",
"start": "yarn workspace @uiengine/ui run start",
"build": "yarn workspace @uiengine/ui run build",
"lint": "yarn workspaces foreach --all -p run lint",
"test": "mocha './packages/*/test/**/*_test.js'",
"test-watch": "yarn run test -R dot --grep @nowatch --invert -w --extensions ejs,hbs,js,jsx,json,marko,md,pug,vue,yml,njk",
"coverage": "c8 yarn run test && c8 report --reporter=text-lcov > ./coverage/lcov.info",
"release": "cross-env NODE_ENV=production yarn run build && lerna publish --exact --force-publish",
"demo": "rimraf test/demo && sleep 1 && uiengine init --dir test/demo --demo && cd test/demo && uiengine build -s -w",
"docs:start": "cd docs && uiengine build -s -w",
"docs:build": "cd docs && cross-env NODE_ENV=production uiengine build",
"test-acceptance": "yarn workspace @uiengine/test-acceptance run test",
"test-acceptance:ci": "yarn workspace @uiengine/test-acceptance run test:ci",
"test-project": "yarn workspace @uiengine/test-project run dev",
"test-project:build": "yarn workspace @uiengine/test-project run prod"
},
"workspaces": [
"packages/*",
"test/acceptance",
"test/project"
],
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
},
"packageManager": "[email protected]"
}