This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.41 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
{
"name": "im-auth",
"version": "1.0.2",
"private": true,
"type": "module",
"scripts": {
"dev": "npm link im-library && vite --port 8082",
"dev:mocked": "npm link im-library && vite --mode mock --port 8082",
"serve": "vite preview --port 8082",
"build": "vite build",
"test:unit": "cross-env NODE_OPTIONS=\"--experimental-specifier-resolution=node\" vitest",
"test:coverage": "cross-env NODE_OPTIONS=\"--experimental-specifier-resolution=node\" vitest run --coverage",
"cypress:run": "cypress run",
"test:e2e": "cypress open --browser chrome",
"test:e2e:ci": "start-server-and-test serve http://localhost:8082 cypress:run",
"lint": "eslint --fix",
"format": "prettier --write"
},
"dependencies": {
"@faker-js/faker": "7.5.0",
"@fortawesome/fontawesome-svg-core": "6.1.1",
"@fortawesome/free-brands-svg-icons": "6.1.1",
"@fortawesome/free-regular-svg-icons": "6.1.1",
"@fortawesome/free-solid-svg-icons": "6.1.1",
"@mswjs/data": "0.10.2",
"@sass-collective/strip-unit": "3.1.2",
"aws-amplify": "4.3.26",
"axios": "0.27.2",
"im-library": "https://endeavour-codebuild-output.s3.eu-west-2.amazonaws.com/im-library-1.0.0.tgz",
"lodash": "4.17.21",
"path": "0.12.7",
"primeflex": "3.2.1",
"primeicons": "5.0.0",
"primevue": "3.15.0",
"sass": "1.52.3",
"sweetalert2": "11.4.18",
"tslib": "2.4.0",
"vue": "3.2.37",
"vue-router": "4.0.16",
"vue-sweetalert2": "5.0.5",
"vuex": "4.0.2"
},
"devDependencies": {
"@cypress/vite-dev-server": "3.0.0",
"@cypress/vue": "4.0.0",
"@originjs/vite-plugin-commonjs": "1.0.3",
"@testing-library/vue": "6.6.1",
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
"@vitejs/plugin-vue": "2.3.3",
"@vitest/coverage-c8": "0.23.4",
"@vue/eslint-config-prettier": "7.0.0",
"@vue/eslint-config-typescript": "11.0.0",
"@vue/test-utils": "2.0.0",
"c8": "7.11.3",
"cross-env": "7.0.3",
"cypress": "10.1.0",
"eslint": "8.18.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-vue": "9.1.1",
"headers-polyfill": "3.0.10",
"jsdom": "20.0.0",
"msw": "0.47.1",
"prettier": "2.7.1",
"start-server-and-test": "1.14.0",
"typescript": "4.7.4",
"vite": "2.9.12",
"vitest": "0.15.1"
},
"msw": {
"workerDirectory": "public"
}
}