-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
145 lines (145 loc) · 3.96 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
142
143
144
145
{
"name": "pdap-design-system",
"version": "0.0.0",
"description": "Global styles for PDAP apps",
"author": "Police Data Accessibility Project, Inc.",
"license": "ISC",
"homepage": "https://github.com/Police-Data-Accessibility-Project/design-system#readme",
"bugs": {
"url": "https://github.com/Police-Data-Accessibility-Project/design-system/issues"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./images/*": "./dist/images/*",
"./styles": "./dist/styles.css"
},
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Police-Data-Accessibility-Project/design-system.git"
},
"directories": {
"doc": "docs"
},
"engines": {
"npm": ">=8.19.3",
"node": ">=18.13.0"
},
"browserslist": {
"production": [
">0.01%",
"not dead",
"not op_mini all"
],
"development": [
">0.01%",
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@pdap-design-system/eslint-config": "^1.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/lodash": "^4.17.13",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitejs/plugin-vue": "^4.4.0",
"@vitest/coverage-v8": "^0.34.6",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.1",
"autoprefixer": "^10.4.16",
"cheerio": "1.0.0-rc.12",
"conventional-changelog-angular": "^7.0.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vue": "^9.18.1",
"husky": "^8.0.0",
"jest-serializer-vue-tjw": "^3.20.0",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.10",
"semantic-release-github-pullrequest": "^1.3.0",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6",
"vue-eslint-parser": "^9.3.2",
"vue-tsc": "^1.8.22"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vuepic/vue-datepicker": "^10.0.0",
"fs-extra": "^11.1.1",
"happy-dom": "^6.0.4",
"minimist": "^1.2.8",
"vue": "^3.3.7",
"vue-router": "^4.2.5"
},
"scripts": {
"_commit": "cz",
"build": "vite build && vue-tsc",
"build:watch": "vite build && vue-tsc --watch",
"ci": "npm run clean && npm ci",
"clean": "run-p clean:*",
"clean:deps": "rimraf node_modules",
"clean:test": "rimraf coverage",
"lint": "run-p lint:*",
"lint:css": "stylelint 'src/**/*.{css,vue}'",
"lint:es": "eslint --ext .ts,.vue src",
"lint:ts": "vue-tsc",
"postbuild": "rimraf dist/{config,utils}",
"posttest": "npm run clean:test",
"prepare": "husky install",
"test": "vitest --dom --run --coverage",
"test:changed": "npm run test -- --changed",
"test:badge": "vitest run --coverage.enabled --coverage.reporter='text-summary'",
"test:ci": "npm run test -- --silent",
"typecheck": "vue-tsc",
"dev": "vite",
"docs": "bash ./scripts/update-docs.sh"
},
"workspaces": [
"eslint-config"
],
"files": [
"bin",
"dist",
"docs",
"package.json",
"README.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}