-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
141 lines (141 loc) · 4.26 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": "@rei/cedar",
"version": "15.3.0",
"description": "REI Cedar Component Library",
"homepage": "https://rei.github.io/rei-cedar/",
"license": "MIT",
"private": false,
"sideEffects": [
"*.css"
],
"publishConfig": {
"access": "public"
},
"author": "REI Software Engineering",
"main": "./dist/cedar.umd.js",
"module": "./dist/lib.mjs",
"types": "./dist/lib.d.ts",
"exports": {
".": {
"types": "./dist/lib.d.ts",
"import": "./dist/lib.mjs",
"require": "./dist/cedar.umd.js"
},
"./dist/": "./dist/"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/rei/rei-cedar.git"
},
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm-run-all lint build",
"dev": "vite",
"build": "vue-tsc && vite build && npm run build:umd && npm run build:icons && npm run build:docgen && npm run build:copycss",
"build:docgen": "node docgen.mjs",
"build:icons": "ts-node src/components/icon/build/generate.ts",
"build:copycss": "node build/copy-css.js",
"build:umd": "vite build --config vite.umd.config.ts",
"build:variables": "node build/component-variables-transfer.js",
"pages": "vite build --config vite.pages.config.mts",
"preview": "vite preview --config vite.pages.config.mts",
"unit": "vitest run",
"watch": "vitest",
"coverage": "vitest run --coverage",
"test:playwright": "playwright test",
"test": "npm-run-all unit test:playwright",
"clean": "rm -rf dist",
"lint": "npm-run-all --continue-on-error lint:js lint:styles lint:types lint:report",
"lint:js": "eslint src --ext .js,.vue,.ts,.mjs",
"lint:styles": "stylelint src/**/*.scss",
"lint:styles:fix": "stylelint 'src/**/*.scss' --fix",
"lint:styles:report": "stylelint src/**/*.scss --custom-formatter=./stylelint-report-formatter.js",
"lint:types": "vue-tsc --noEmit",
"lint:report": "node lint-report-generator.mjs",
"lint:full": "npm-run-all lint lint:report",
"prepush": "npm-run-all lint unit",
"create": "node generator.js",
"prerelease": "npm-publish-prerelease"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@babel/preset-env": "^7.18.2",
"@emotion/is-prop-valid": "^1.2.1",
"@playwright/test": "^1.49.0",
"@rei/cedar-icons": "^2.6.1",
"@rollup/plugin-babel": "^6.0.3",
"@types/tabbable": "^3.1.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.2.6",
"autoprefixer": "^10.2.5",
"c8": "^7.11.0",
"chalk": "^4.1.0",
"concat": "^1.0.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tree-shaking": "^1.8.0",
"eslint-plugin-vue": "^9.14.1",
"fs-extra": "^10.0.0",
"glob": "^7.1.6",
"husky": "^4.3.8",
"inquirer": "^8.1.0",
"jsdom": "^16.5.3",
"jsdom-global": "^3.0.2",
"klaw-sync": "^6.0.0",
"lodash-es": "^4.17.21",
"npm-publish-prerelease": "^1.0.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-calc": "^8.0.0",
"postcss-pxtorem": "^6.0.0",
"postcss-scss": "^4.0.9",
"sass": "^1.32.11",
"sinon": "^11.1.0",
"stylelint": "^16.10.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-scss": "^6.8.1",
"ts-node": "^10.9.1",
"typescript": "5.6.3",
"vite": "^5.0.1",
"vite-plugin-dts": "^3.3.1",
"vitest": "^1.1.1",
"vue-docgen-cli": "^4.79.0",
"vue-eslint-parser": "^9.3.0",
"vue-router": "^4.0.10",
"vue-tsc": "2.1.10"
},
"engines": {
"node": ">= 20.0.0",
"npm": ">= 10.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-push": "npm run prepush"
}
},
"dependencies": {
"@rei/cdr-tokens": "^12.5.2",
"tabbable": "^4.0.0"
},
"peerDependencies": {
"core-js": "^3.22.7",
"vue": "^3.3.4"
}
}