-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.62 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
101
102
103
104
105
106
107
108
{
"name": "app-vue",
"description": "Stable version of a basic SPA example with SCSS, Vue and TypeScript.",
"license": "MIT",
"version": "2.5.1",
"scripts": {
"preprod": "gulp --env=production",
"prod": "webpack --env.NODE_ENV=production",
"postprod": "rimraf ./dist/css/scripts",
"dev": "gulp --env=development",
"postdev": "webpack --env.NODE_ENV=development",
"start": "npm run dev",
"poststart": "concurrently \"gulp watcher --env=development\" \"webpack-dev-server --env.NODE_ENV=development --watch\" --names \"🥛,📦\" --prefix name --kill-others",
"test:unit": "karma start test/unit/karma.conf.js --single-run",
"test:e2e": "node test/e2e/runner.js",
"test": "npm run test:unit && npm run test:e2e",
"tree": "tree -l 5 -a --ignore 'node_modules,/, .git/, dist/, .DS_Store'"
},
"dependencies": {
"@types/sinon-chai": "^3.2.0",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0-rc.11",
"inversify": "^4.13.0",
"localforage": "^1.7.2",
"normalize-scss": "^7.0.1",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"vue": "^2.5.17",
"vue-i18n": "^8.1.0",
"vue-router": "^3.0.1",
"weather-icons": "^1.3.2"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.9.4",
"@vue/test-utils": "^1.0.0-beta.25",
"autoprefixer": "^9.1.5",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chromedriver": "^2.41.0",
"concurrently": "^4.0.1",
"css-loader": "^1.0.0",
"del": "^3.0.0",
"glob-fs": "^0.1.7",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^6.0.0",
"gulp-clean-css": "^3.10.0",
"gulp-environment": "^1.5.2",
"gulp-fontmin": "^0.7.4",
"gulp-imagemin": "^4.1.0",
"gulp-load-plugins": "^1.5.0",
"gulp-newer": "^1.4.0",
"gulp-noop": "^1.0.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-style-aliases": "^1.1.11",
"gulp-stylelint": "^7.0.0",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.0-rc.2",
"mocha": "^5.2.0",
"nightwatch": "^0.9.12",
"node-sass": "^4.9.3",
"postcss-loader": "^3.0.0",
"require.all": "^2.0.4",
"sass-loader": "^7.1.0",
"selenium-server": "^3.0.1",
"sinon": "^6.2.0",
"sinon-chai": "^3.2.0",
"string-replace-webpack-plugin": "^0.1.3",
"stylelint": "^9.5.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^1.0.0",
"stylelint-processor-html": "^1.0.0",
"stylelint-scss": "^3.3.0",
"stylelint-webpack-plugin": "^0.10.5",
"through2": "^2.0.3",
"ts-loader": "^5.0.0",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.5.0",
"tslint": "^5.11.0",
"tslint-loader": "^3.6.0",
"typescript": "^3.0.3",
"uglifyjs-webpack-plugin": "^1.3.0",
"vue-builder-webpack-plugin": "^0.4.0",
"vue-loader": "^15.4.1",
"vue-property-decorator": "^7.0.0",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"repository": "https://github.com/CKGrafico/Frontend-Boilerplates#frontend-boilerplates",
"author": "https://github.com/CKGrafico/Frontend-Boilerplates#-contributors"
}