This repository has been archived by the owner on May 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
74 lines (74 loc) · 2.48 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": "ppr-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "APP_PATH=/ vue-cli-service serve",
"build": "vue-cli-service build",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vue-cli-service test:unit",
"test:unit:cov": "vue-cli-service test:unit --coverage",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"lint:nofix": "vue-cli-service lint --no-fix",
"precommit": "npm run lint:nofix && npm run test:unit && npm run build"
},
"scriptComments": {
"serve": "Run the Vue serever locally with hot swapping on any changes",
"build": "Build the Vue application",
"test": "Run all tests",
"test:unit": "Run the unit tests",
"test:e2e": "Run the end to end tests. Not currently in use.",
"lint": "Run lint and fix what can be fixed",
"lint:nofix": "Run lint without fixing anything",
"precommit": "Include commands that mimic the github actions performed on any PR"
},
"dependencies": {
"@sentry/browser": "^5.12.1",
"@sentry/integrations": "^5.12.0",
"@vue/composition-api": "^0.3.4",
"axios": "^0.19.2",
"core-js": "^3.6.4",
"ip": "^1.1.5",
"jwt-decode": "^2.2.0",
"launchdarkly-js-client-sdk": "^2.16.3",
"register-service-worker": "^1.6.2",
"sbc-common-components": "^2.1.14",
"ua-parser-js": "^0.7.21",
"vue": "^2.6.11",
"vue-class-component": "^7.2.2",
"vue-property-decorator": "^8.4.0",
"vue-router": "^3.1.5",
"vuetify": "^2.2.11",
"vuex": "^3.0.1",
"vuex-module-decorators": "^0.16.1"
},
"devDependencies": {
"@types/ip": "^1.1.0",
"@types/jest": "^24.9.1",
"@types/jwt-decode": "^2.2.1",
"@types/ua-parser-js": "^0.7.33",
"@vue/cli": "^4.2.3",
"@vue/cli-plugin-babel": "^4.2.3",
"@vue/cli-plugin-e2e-nightwatch": "^4.2.3",
"@vue/cli-plugin-eslint": "^4.2.3",
"@vue/cli-plugin-pwa": "^4.2.3",
"@vue/cli-plugin-router": "^4.2.3",
"@vue/cli-plugin-typescript": "^4.2.3",
"@vue/cli-plugin-unit-jest": "^4.2.3",
"@vue/cli-plugin-vuex": "^4.2.3",
"@vue/cli-service": "^4.2.3",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.31",
"chromedriver": "78",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"fibers": "^4.0.2",
"geckodriver": "^1.19.0",
"node-sass": "^4.13.1",
"sass": "^1.25.0",
"sass-loader": "^8.0.2",
"typescript": "^3.7.5",
"vue-template-compiler": "^2.6.11"
}
}