-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
49 lines (49 loc) · 1.9 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
{
"name": "qgrid",
"private": "true",
"version": "13.3.0",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build:example-app": "lerna run build:prod --stream --scope qgrid-ngx-examples --concurrency 1",
"build": "lerna run build --stream --concurrency 1",
"clean": "lerna run clean --stream --concurrency 1",
"copy:theme:basic": "copyfiles -u 3 packages/qgrid-ngx-theme-basic/dist/**/* packages/ng2-qgrid/theme/basic",
"copy:theme:material": "copyfiles -u 3 packages/qgrid-ngx-theme-material/dist/**/* packages/ng2-qgrid/theme/material",
"lerna": "lerna",
"lint": "lerna run lint --stream --concurrency 1",
"publish:after": "rimraf packages/ng2-qgrid/theme",
"publish:alpha": "yarn publish:before && lerna publish --canary --preid alpha --force-publish=* && yarn publish:after",
"publish:before": "yarn copy:theme:material && yarn copy:theme:basic",
"publish:example-app": "gh-pages -d packages/qgrid-ngx-examples/dist/",
"publish:example-repo": "node ./scripts/publish.example-repo",
"publish:lib": "yarn publish:before && lerna publish --force-publish=* && yarn publish:after",
"start": "yarn clean && node ./scripts/serve.js",
"test": "lerna run test --stream --concurrency 1"
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "~13.2.1",
"@angular-eslint/eslint-plugin-template": "~13.2.1",
"@angular-eslint/template-parser": "~13.2.1",
"command-line-args": "^5.2.0",
"copyfiles": "^2.4.1",
"eslint": "^8.19.0",
"eslint-plugin-import-newlines": "^1.2.2",
"fs": "^0.0.1-security",
"gh-pages": "4.0.0",
"glob": "^7.2.0",
"lerna": "^5.1.6",
"path": "^0.12.7",
"postcss": "^8.4.13",
"sane": "^5.0.1",
"shelljs": "^0.8.5",
"stylelint": "^14.8.2",
"stylelint-config-standard-scss": "^3.0.0",
"typescript": "~4.5.4"
},
"dependencies": {
"ng2-qgrid": "^13.3.0"
}
}