-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 2.96 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
{
"name": "vuejs-playground",
"version": "1.0.0",
"description": "vuejs playground with various setups",
"main": "index.js",
"scripts": {
"build": "webpack --config build/webpack.config.dev.js",
"test": "NODE_ENV=test jest",
"dev": "webpack-dev-server --config build/webpack.config.dev.js",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"setup": "rm -rf ./node_modules/ && npm cache verify && npm install",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"jest": {
"verbose": true,
"setupFiles": ["<rootDir>/build/jest/register-context.js"],
"moduleFileExtensions": [
"js",
"vue",
"json",
"node"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor",
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(@storybook/.*\\.vue$))"
],
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamchenwei/vuejs-playground.git"
},
"keywords": [
"vuejs",
"playground",
"javascript"
],
"author": "adamchenwei@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/adamchenwei/vuejs-playground/issues"
},
"homepage": "https://github.com/adamchenwei/vuejs-playground#readme",
"dependencies": {
"vue": "^2.5.17",
"vue-router": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@storybook/addon-storyshots": "^4.0.0-rc.6",
"@storybook/vue": "^4.0.0-rc.6",
"@vue/babel-preset-app": "^3.0.5",
"@vue/test-utils": "^1.0.0-beta.25",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-vue": "^2.0.2",
"copy-webpack-plugin": "^4.5.4",
"css-loader": "^1.0.0",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^4.7.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^1.0.0",
"jest-vue-preprocessor": "^1.4.0",
"node-sass": "^4.9.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"vue-jest": "^3.0.0",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.23.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}