-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "idp-profile-ui",
"type": "module",
"engines": {
"node": ">=18.0.0 <19.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/silinternational/idp-profile-ui"
},
"scripts": {
"serve": "vite",
"serve:prod": "vite preview",
"build": "echo UI_VERSION=${UI_VERSION} >> .env; vite build",
"clean": "rimraf dist",
"format": "prettier --write \"src/**/*.{js,vue}\"",
"format:check": "prettier --check \"src/**/*.{js,vue}\"",
"fix": "eslint --fix \"src/**/*.{js,vue}\"",
"lint": "eslint \"src/**/*.{js,vue}\""
},
"dependencies": {
"@intlify/unplugin-vue-i18n": "^6.0.1",
"@simplewebauthn/browser": "^4.1.0",
"axios": "^1.7.9",
"date-fns": "^2.28.0",
"sass-loader": "^10.1.1",
"vite": "^5.1.5",
"vite-plugin-vuetify": "^2.0.4",
"vue": "^3",
"vue-i18n": "^9",
"vue-router": "^4",
"vuetify": "^3.7.5",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@sentry/vite-plugin": "^2.22.7",
"@sentry/vue": "^7.113.0",
"@simplewebauthn/browser": "^9",
"@vitejs/plugin-vue": "^5.2.1",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"eslint": "^9.17.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vuetify": "^2.5.1",
"prettier": "^3.4.2",
"rimraf": "^3.0.2",
"sass": "^1.83.0",
"unplugin-vue-components": "^0.27.4",
"vue-sanitize-directive": "^0.2.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"author": "SIL GTIS <[email protected]>",
"license": "MIT",
"description": "Identity management UI"
}