forked from UPchieve/web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.19 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
{
"name": "web",
"version": "1.0.0",
"description": "UPchieve web client",
"author": "Corey <[email protected]>",
"private": true,
"scripts": {
"dev": "vue-cli-service serve --open",
"build": "vue-cli-service build",
"build:staging": "vue-cli-service build --mode=staging",
"lint": "vue-cli-service lint",
"lint:prod": "vue-cli-service lint --mode=production --no-fix --max-warnings=0",
"e2e": "vue-cli-service test:e2e --mode=development",
"e2e:headless": "vue-cli-service test:e2e --mode=development --headless",
"test": "vue-cli-service test:unit",
"test:watch": "vue-cli-service test:unit --watch",
"clean-slate": "npx rimraf node_modules dist && npm install",
"cypress": "npx cypress run"
},
"dependencies": {
"@sentry/browser": "^5.9.0",
"@sentry/integrations": "^5.8.0",
"@trevoreyre/autocomplete-vue": "^2.0.2",
"@vue/cli-plugin-babel": "^3.9.0",
"@vue/cli-plugin-e2e-cypress": "^3.9.0",
"@vue/cli-plugin-eslint": "^3.9.0",
"@vue/cli-plugin-unit-jest": "^3.9.0",
"@vue/cli-service": "^3.9.0",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/test-utils": "1.0.0-beta.29",
"awesome-phonenumber": "^2.20.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"base64url": "^3.0.1",
"bootstrap": "^3.3.7",
"core-js": "^2.6.5",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"jquery": "^3.4.1",
"lodash": "^4.17.14",
"moment": "^2.24.0",
"moment-timezone": "^0.5.26",
"node-sass": "^4.13.1",
"sass-loader": "^7.1.0",
"style-resources-loader": "^1.2.1",
"typeface-work-sans": "0.0.72",
"validator": "^6.3.0",
"vue": "^2.6.10",
"vue-headful": "^2.0.1",
"vue-phone-number-input": "^0.2.6",
"vue-resource": "^1.5.1",
"vue-router": "^3.0.3",
"vue-select": "^3.1.0",
"vue-socket.io": "^2.1.0",
"vue-star-rating": "^1.6.1",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.0.1"
},
"engines": {
"node": ">= 11.7.0",
"npm": ">= 6.0.0"
},
"devDependencies": {
"husky": "^4.2.3"
},
"husky": {
"hooks": {
"pre-push": "./bin/run-cypress.sh"
}
}
}