-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 3.24 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
{
"name": "carsharing-calculator",
"version": "1.0.0",
"description": "A Vue.js project",
"author": "Pixelistik <[email protected]>",
"private": true,
"scripts": {
"dev": "node build/dev-server.js",
"start": "node build/dev-server.js",
"build": "node build/build.js",
"icons": "build/generate-icons.sh",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"unit:watch": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js",
"test": "npm run unit",
"lint": "eslint --ext .js,.vue src test/unit/specs",
"deploy": "npm run lint && npm run unit && npm run build && now dist/ --public --name carsharing-calculator && now alias",
"deploy-ftp": "lftp -e \"set ssl:check-hostname no; mirror --reverse --overwrite --parallel=4 -v dist .; quit;\" ftp://[email protected]"
},
"now": {
"alias": "carsharing-calculator"
},
"dependencies": {
"lodash": "^4.17.21",
"vue": "^2.6.14",
"vue-material": "1.0.0-beta-15"
},
"devDependencies": {
"autoprefixer": "^9.8.8",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^7.1.5",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"chai": "^4.3.4",
"chalk": "^4.1.2",
"connect-history-api-fallback": "^2.0.0",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^7.0.3",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-vue": "^9.4.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.18.1",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^2.0.1",
"inject-loader": "^4.0.1",
"karma": "^6.3.16",
"karma-coverage": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-phantomjs-shim": "^1.4.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "0.0.36",
"karma-webpack": "^3.0.5",
"lolex": "^6.0.0",
"mocha": "^9.2.2",
"now": "^21.0.1",
"opn": "^6.0.0",
"optimize-css-assets-webpack-plugin": "^1.3.0",
"ora": "^5.4.1",
"phantomjs-prebuilt": "^2.1.14",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"shelljs": "^0.8.5",
"sinon": "^4.5.0",
"sinon-chai": "^3.7.0",
"sw-precache-webpack-plugin": "^1.0.0",
"url-loader": "^0.6.2",
"vue-loader": "^12.1.0",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"webpack": "^2.6.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-dev-middleware": "^2.0.6",
"webpack-hot-middleware": "^2.25.3",
"webpack-merge": "^5.8.0"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}