-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.29 KB
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
{
"name": "tpv-tickets-front",
"version": "0.1.0",
"private": true,
"engines": {
"node": "12.4"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:cypress": "cd UI-e2e && npm run cy:open",
"test:headless": "cd UI-e2e && npm run cy:run",
"test:record": "cd UI-e2e && npm run cy:record",
"lint": "vue-cli-service lint",
"start": "node server.js",
"heroku-postbuild": "npm run build",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"dependencies": {
"@saeris/vue-spinners": "^1.0.8",
"@storybook/vue": "^6.2.9",
"axios": "^0.21.1",
"compression": "^1.7.4",
"core-js": "^3.4.4",
"express": "^4.17.1",
"helmet": "^3.22.0",
"js-cookie": "^2.2.1",
"lodash": "^4.17.21",
"register-service-worker": "^1.7.1",
"snyk": "^1.595.0",
"vue": "^2.6.10",
"vue-analytics": "^5.22.1",
"vue-i18n": "^8.17.5",
"vue-notification": "^1.3.20",
"vue-router": "^3.1.6",
"vue-types": "^2.0.2",
"vuelidate": "^0.7.5",
"vuex": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/helper-compilation-targets": "^7.16.0",
"@storybook/addon-actions": "^5.2.5",
"@storybook/addon-backgrounds": "^5.2.5",
"@storybook/addon-knobs": "^5.2.5",
"@storybook/addon-links": "^5.2.5",
"@storybook/addon-options": "^5.2.5",
"@storybook/addon-storysource": "^5.2.5",
"@storybook/addon-viewport": "^5.2.5",
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-pwa": "^4.1.0",
"@vue/cli-plugin-unit-jest": "^4.2.3",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2",
"cypress-file-upload": "^3.5.3",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"husky": "^4.2.1",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2",
"vue-loader": "^15.8.3",
"vue-template-compiler": "^2.6.10"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test:unit",
"pre-push": "npm run test:e2e"
}
},
"snyk": true
}