-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.08 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.08 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
{
"name": "web-framework",
"version": "5.0.0",
"description": "A rapid frontend ['framework', 'wrapper', 'workflow'] for web applications. Builds JS and CSS with Webpack.",
"license": "MIT",
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.29",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"autoprefixer": "^9.4.7",
"babel-core": "^6.26.3",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-loader": "^8.0.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"css-loader": "^0.28.11",
"cssnano": "^4.1.7",
"cypress": "^3.1.3",
"file-loader": "^1.1.11",
"jest": "^23.6.0",
"jest-vue-preprocessor": "^1.5.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"query-string": "^6.2.0",
"sass-loader": "^6.0.7",
"script-loader": "^0.7.0",
"style-loader": "^0.23.1",
"vue-jest": "^3.0.4",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.29.3",
"webpack-build-notifier": "^0.1.30",
"webpack-clean": "^1.2.3",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"autotrack": "^1.1.0",
"axios": ">=0.18.1",
"es6-promise": "^4.2.4",
"he": "^1.2.0",
"jquery": "*",
"lodash": "^4.17.5",
"moment": "^2.24.0",
"navigo": "^5.2.0",
"numeral": "^2.0.6",
"slick-carousel": "*",
"sticky-kit": "*",
"store": "^2.0.12",
"verbal-expressions": "*",
"vue": "^2.5.17"
},
"scripts": {
"build:all": "webpack --mode production && webpack --mode development",
"build:development": "webpack --mode development",
"build:production": "webpack --mode production",
"test": "jest --verbose",
"watch": "webpack --watch --mode development"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
},
"private": true
}