-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.56 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
{
"name": "planning_poker",
"description": "online planning poker tool",
"version": "1.0.0",
"author": "Ryo Tanaka<callas1900@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.js",
"start": "npm run dev",
"lint": "eslint --ext .js,.vue src",
"local": "firebase emulators:start",
"build": "cross-env NODE_ENV=production webpack --config build/webpack.prod.js",
"dbuild": "cross-env NODE_ENV=development webpack --config build/webpack.dev.js"
},
"dependencies": {
"cssnano": "^4.1.10",
"firebase": "^7.14.1",
"node-sass": "^6.0.0",
"vue": "^2.5.11",
"vue-clipboard2": "^0.3.1",
"vue-material": "^1.0.0-beta-12",
"vue-router": "^3.1.6",
"vuex": "^3.3.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-syntax-jsx": "^7.0.0",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"babel-eslint": "^10.0.3",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"core-js": "^3.3.3",
"cross-env": "^5.0.5",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^1.1.4",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.0.1",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^10.1.1",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.4.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false,
"targets": {
"browsers": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
},
"useBuiltIns": "usage",
"corejs": 3
}
]
],
"plugins": [
"transform-vue-jsx"
]
}
}