-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
103 lines (103 loc) · 2.94 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "starter-vue-vuex-scss",
"description": "A lightweight Vue.js starter including Vuex, SCSS, Vue Router and Axios.",
"version": "1.0.0",
"main": "src/main.js",
"license": "MIT",
"author": "Quentin Raimbault <[email protected]>",
"sassLintConfig": ".sass-lint.yml",
"repository": {
"url": "https://github.com/QRaimbault/vue-js-starter-scss",
"type": "git"
},
"bugs": {
"url": "https://github.com/QRaimbault/vue-js-starter-scss/issues",
"email": "[email protected]"
},
"homepage": "https://qraimbault.github.io/vue-js-starter-scss/#/",
"keywords": [
"vue",
"vuejs",
"starter",
"vuex",
"axios-vue",
"sass",
"scss",
"vue-router",
"vuejs2",
"vue2",
"jest",
"scss-styles"
],
"scripts": {
"start": "cross-env NODE_ENV=development node_modules/.bin/webpack-dev-server",
"build": "cross-env NODE_ENV=production webpack",
"serve": "cross-env NODE_ENV=production node bin/spa-server.js",
"lint-js": "eslint --ext .js,.vue src",
"lint-js-fix": "eslint --ext .js,.vue src --fix",
"lint-scss": "sass-lint -c ./.sass-lint.yml",
"unit": "jest"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"moduleNameMapper": {
"\\.(css|jpg|jpeg|png|scss|sass|svg|eot|woff|woff2|ttf|otf|ico)$": "<rootDir>/__test__/empty-module.js"
}
},
"dependencies": {
"axios": "^0.19.2",
"vue": "^2.6.11",
"vue-analytics": "^5.22.1",
"vue-cookie": "^1.1.4",
"vue-router": "^3.4.3",
"vuex": "^3.5.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.11.5",
"@vue/test-utils": "^1.0.3",
"babel-core": "^7.0.0-0",
"babel-jest": "^26.5.2",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^6.0.3",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2",
"express": "^4.17.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.5.3",
"mini-css-extract-plugin": "^1.0.0",
"node-sass": "^4.14.1",
"open": "^7.3.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"regenerator-runtime": "^0.13.7",
"resolve-url-loader": "^3.1.1",
"sass-lint": "^1.13.1",
"sass-loader": "^10.0.3",
"style-loader": "^1.2.1",
"sugarss": "^2.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.0",
"vue-eslint-parser": "^7.1.0",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}