This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
126 lines (126 loc) · 5.5 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@esri/calcite-app-components",
"version": "6.3.0",
"description": "A collection of web components for building single-page applications.",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
"unpkg": "dist/calcite-app.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "stencil build --docs",
"build:docs": "stencil build --config stencil.storybook.config.ts",
"demoPageSync": "ts-node ./support/demoPageSync.ts",
"deps:update": "updtr --ex jest-runner @types/jest @types/puppeteer jest jest-cli puppeteer && git add package*.json && git commit -q -m \"build(deps): bump versions\"",
"docs": "concurrently --kill-others --raw \"npm run build:docs && build-storybook --static-dir ./__docs-temp__ --output-dir ./docs\" \"ts-node ./support/tempDocDirCleaner.ts\"",
"docs:preview": "concurrently --raw \"npm run build:docs && start-storybook --static-dir ./__docs-temp__\" \"ts-node ./support/tempDocDirCleaner.ts\"",
"lint": "concurrently npm:lint:*",
"lint:ts": "tslint --project tsconfig-tslint.json && eslint --ext .ts,.tsx .",
"lint:styles": "stylelint \"src/**/*.scss\"",
"prepublishOnly": "ts-node ./support/prepublish.ts",
"prettier": "concurrently npm:prettier:*",
"prettier:ts": "prettier --write \"src/**/*.ts?(x)\"",
"prettier:styles": "prettier --write \"src/**/*.scss\"",
"previewChangelog": "ts-node ./support/ensureNonPrereleaseChangelog.ts --no-skip.bump --silent && cat CHANGELOG.md && git reset --hard --quiet",
"previewChangelog:latest": "npx touch __CHANGELOG-PREVIEW-TEMP__ && ts-node ./support/ensureNonPrereleaseChangelog.ts --no-skip.bump --release-count 1 --infile __CHANGELOG-PREVIEW-TEMP__ --same-file --silent && cat __CHANGELOG-PREVIEW-TEMP__ && rimraf __CHANGELOG-PREVIEW-TEMP__ && git reset --hard --quiet",
"release": "npm run util:pushTags && npm publish && ts-node ./support/githubReleaseFromChangelog.ts",
"release:next": "npm run util:cleanTestedBuild && npm run util:deployNextFromExistingBuild",
"start": "concurrently --kill-others --raw \"npm run demoPageSync\" \"tsc --project ./tsconfig-demos.json --watch\" \"stencil build --dev --watch --serve\"",
"test": "stencil test --spec --e2e",
"test:headed": "stencil test --spec --e2e --devtools",
"test:watch": "stencil test --spec --e2e --watch",
"test:watchAll": "stencil test --spec --e2e --watchAll",
"util:cleanTestedBuild": "npm ci && npm test && npm run build",
"util:deployNextFromExistingBuild": "npm run util:prepNextFromExistingBuild && npm run util:pushTags && npm run util:publishNext",
"util:prepNextFromExistingBuild": "standard-version --no-skip.bump --no-skip.commit --no-skip.tag --skip.changelog --prerelease beta",
"util:pushTags": "git push --follow-tags",
"util:publishNext": "npm publish --tag next",
"version": "npm run util:cleanTestedBuild && npm run docs && ts-node ./support/ensureNonPrereleaseChangelog.ts && git add ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Esri/calcite-app-components.git"
},
"dependencies": {
"@esri/calcite-base": "1.2.0",
"@esri/calcite-colors": "2.1.0",
"lodash-es": "4.17.15",
"sortablejs": "1.10.2"
},
"devDependencies": {
"@esri/calcite-components": "1.0.0-beta.37",
"@stencil/core": "2.0.1",
"@stencil/eslint-plugin": "0.3.1",
"@stencil/postcss": "1.0.1",
"@stencil/sass": "1.3.2",
"@storybook/addon-a11y": "6.0.21",
"@storybook/addon-backgrounds": "6.0.21",
"@storybook/addon-centered": "5.3.21",
"@storybook/addon-docs": "6.0.21",
"@storybook/addon-knobs": "6.0.21",
"@storybook/addon-notes": "5.3.21",
"@storybook/html": "6.0.21",
"@types/autoprefixer": "9.7.2",
"@types/dedent": "0.7.0",
"@types/git-semver-tags": "3.0.0",
"@types/jest": "24.9.1",
"@types/jest-axe": "3.5.0",
"@types/lodash-es": "4.17.3",
"@types/pify": "3.0.2",
"@types/puppeteer": "1.20.0",
"@types/rimraf": "3.0.0",
"@types/sortablejs": "1.10.6",
"@types/webpack": "4.41.21",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"autoprefixer": "9.8.6",
"awesome-typescript-loader": "5.2.1",
"axe-core": "4.0.1",
"babel-loader": "8.1.0",
"chalk": "4.1.0",
"chokidar": "3.4.2",
"colorette": "1.2.1",
"concurrently": "5.3.0",
"dedent": "0.7.0",
"eslint": "7.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"gh-release": "3.5.0",
"git-semver-tags": "4.1.0",
"github-release-from-cc-changelog": "2.2.0",
"husky": "4.2.5",
"jest": "24.9.0",
"jest-axe": "3.5.0",
"jest-cli": "24.9.0",
"jest-runner": "24.9.0",
"lint-staged": "10.2.13",
"package": "1.0.1",
"pify": "5.0.0",
"posthtml": "0.13.3",
"prettier": "2.1.1",
"puppeteer": "2.1.0",
"rimraf": "3.0.2",
"standard-version": "9.0.0",
"stylelint": "13.7.0",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-scss": "3.18.0",
"ts-jest": "26.3.0",
"ts-node": "9.0.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-stencil": "1.0.1",
"typescript": "4.0.2",
"updtr": "3.1.0"
},
"peerDependencies": {
"@esri/calcite-components": "1.0.0-beta.35"
},
"license": "UNLICENSED"
}