-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
88 lines (88 loc) · 2.95 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
{
"name": "todolist-frontend",
"description": "My Vue.js todolist",
"version": "1.0.0",
"author": "Guillaume Briday <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"hot": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.dev.js --hot",
"dev": "yarn development",
"development": "cross-env NODE_ENV=development webpack --config build/webpack.dev.js --progress --hide-modules",
"watch": "yarn development -- --watch",
"prod": "yarn production",
"production": "cross-env NODE_ENV=production webpack --config build/webpack.prod.js --no-progress --hide-modules",
"lint": "eslint --ext .js,.vue src build tests",
"test": "mocha-webpack --webpack-config build/webpack.dev.js --require tests/setup.js tests/**/*.spec.js"
},
"dependencies": {
"@babel/core": "7.9.6",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-json-strings": "7.8.3",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.8.3",
"@babel/preset-env": "7.9.6",
"@fortawesome/fontawesome-svg-core": "1.2.30",
"@fortawesome/free-brands-svg-icons": "5.13.1",
"@fortawesome/free-regular-svg-icons": "5.13.1",
"@fortawesome/free-solid-svg-icons": "5.13.1",
"@fortawesome/vue-fontawesome": "0.1.10",
"@fullhuman/postcss-purgecss": "1.3.0",
"axios": "0.19.2",
"copy-webpack-plugin": "6.0.4",
"dotenv-webpack": "1.8.0",
"laravel-echo": "1.8.1",
"luxon": "1.24.1",
"moment": "2.26.0",
"optimize-css-assets-webpack-plugin": "5.0.4",
"pusher-js": "6.0.3",
"tailwindcss": "0.7.4",
"terser-webpack-plugin": "3.0.8",
"vue": "2.6.11",
"vue-analytics": "5.22.1",
"vue-clickaway": "2.2.2",
"vue-datetime": "1.0.0-beta.13",
"vue-meta": "2.3.3",
"vue-router": "3.2.0",
"vuex": "3.4.0",
"webpack-merge": "4.2.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"cross-env": "7.0.2",
"css-loader": "3.5.3",
"eslint": "7.1.0",
"eslint-config-standard": "14.1.1",
"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",
"expect": "26.0.1",
"file-loader": "6.0.0",
"html-webpack-plugin": "4.3.0",
"jsdom": "16.2.2",
"jsdom-global": "3.0.2",
"mini-css-extract-plugin": "0.9.0",
"mocha": "7.2.0",
"mocha-webpack": "1.1.0",
"node-sass": "4.14.1",
"postcss-loader": "3.0.0",
"sass-loader": "8.0.2",
"style-loader": "1.2.1",
"vue-loader": "15.9.2",
"vue-template-compiler": "2.6.11",
"vue-test-utils": "1.0.0-beta.11",
"webpack": "4.43.0",
"webpack-bundle-analyzer": "3.8.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0",
"weekstart": "1.0.1"
}
}