-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
141 lines (141 loc) · 4.06 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@aurodesignsystem/auro-formkit",
"version": "1.0.0",
"description": "A collection of web components used to build forms.",
"type": "module",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AlaskaAirlines/auro-formkit"
},
"engines": {
"node": "^18.x || ^20.x"
},
"packageManager": "[email protected]",
"workspaces": [
"components/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:sass": "turbo run build:sass",
"build:version": "turbo run build:version",
"postCss:component": "turbo run postCss:component",
"sass:render": "turbo run sass:render",
"bundler": "turbo run bundler",
"types": "turbo run types",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test --concurrency=1",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"postinstall": "node ./node_modules/@aurodesignsystem/auro-library/scripts/build/postinstall.mjs",
"build:docs": "turbo run build:docs",
"build:docs:kit": "turbo run --filter=@auro-formkit/build-tools build:docs:kit",
"sweep": "find ./components ./packages -type d -name 'dist' -exec rm -rf {} + && find ./components ./packages -not -path '*/node_modules/*' -type f \\( -name '*.css' -o -name '*-css.js' \\) -delete",
"preCommit": "node ./node_modules/@aurodesignsystem/auro-library/scripts/build/pre-commit.mjs",
"prepare": "husky install"
},
"dependencies": {
"@aurodesignsystem/auro-library": "^3.0.2"
},
"devDependencies": {
"@aurodesignsystem/eslint-config": "^1.3.3",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@open-wc/testing": "^4.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@web/dev-server": "^0.4.6",
"@web/test-runner": "^0.19.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"compression": "^1.7.5",
"concat": "^1.0.3",
"concurrently": "^9.0.1",
"copyfiles": "^2.4.1",
"core-js": "^3.38.1",
"eslint": "^9.14.0",
"eslint-plugin-jsdoc": "^50.5.0",
"husky": "^8.0.0",
"lodash": "^4.17.21",
"markdown-magic": "^2.6.1",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"postcss-custom-properties": "^14.0.4",
"postcss-discard-comments": "^7.0.3",
"prettier": "^3.0.0",
"sass": "^1.80.7",
"semantic-release": "^24.1.2",
"stylelint": "^16.10.0",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.9.0",
"turbo": "^2.3.1",
"typescript": "^5.6.3",
"whatwg-fetch": "^3.6.20",
"yaml-lint": "^1.7.0"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 iOS major versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Safari major versions"
],
"sass": {
"includePaths": [
"./node_modules"
]
},
"release": {
"branches": [
{
"name": "main"
},
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "./CHANGELOG.md",
"changelogTitle": "# Semantic Release Automated Changelog"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"./package.json",
"./CHANGELOG.md",
"./README.md",
"./docs/api.md",
"./demo/index.md",
"./demo/api.md"
]
}
],
"@semantic-release/github"
]
},
"keywords": [
"alaska airlines",
"auro",
"design system",
"web components"
]
}