-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.86 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
{
"name": "octoflix",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint && yarn stylelint 'src/**/*.vue'",
"cost": "cost-of-modules --yarn --no-install",
"lighthouse:dev ": "lighthouse-ci https://localhost:8080",
"lighthouse:qua": "curl --silent https://octoflix.herokuapp.com/#/ && lighthouse-ci https://octoflix.herokuapp.com/#/",
"lighthouse:ci": "curl --silent https://octoflix.herokuapp.com/#/ && lighthouse-ci --performance=80 --pwa=100 https://octoflix.herokuapp.com/#/",
"test:unit": "vue-cli-service test:unit",
"test:coverage": "vue-cli-service test:unit --no-cache --coverage",
"test:dev": "vue-cli-service test:unit --no-cache --coverage --runInBand --detectOpenHandles --verbose",
"start": "node server.js",
"postinstall": "npm run build"
},
"dependencies": {
"axios": "^0.19.0",
"core-js": "^2.6.5",
"express": "^4.16.4",
"register-service-worker": "^1.6.2",
"serve-static": "^1.13.2",
"vue": "^2.6.6",
"vue-analytics": "^5.16.4",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.5.0",
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-plugin-pwa": "^3.5.0",
"@vue/cli-plugin-unit-jest": "3.9.0",
"@vue/cli-service": "^3.5.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"cost-of-modules": "^1.0.1",
"eslint": "6.1.0",
"eslint-plugin-vue": "^5.0.0",
"jest-plugin-context": "^2.9.0",
"lighthouse-ci": "^1.9.0",
"nyc": "^14.1.1",
"sinon": "^7.3.2",
"stylelint": "^10.1.0",
"vue-template-compiler": "^2.5.21",
"workbox-webpack-plugin": "^4.2.0"
}
}