-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·90 lines (90 loc) · 2.72 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
{
"name": "app-vue",
"description": "Development version of a website with Nuxt, SCSS and TypeScript.",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"test": "mocha --opts mocha.opts",
"preprod": "gulp --env=production",
"prod": "cross-env NODE_ENV=production nuxt generate --spa",
"predev": "gulp --env=development",
"dev": "cross-env NODE_ENV=development nuxt generate --spa",
"prestart": "gulp --env=development",
"start": "concurrently \"gulp watcher --env=development\" \"cross-env NODE_ENV=development BASE_URL=http://localhost:3005 nuxt\" --names \"🥛,📦\" --prefix name --kill-others"
},
"config": {
"nuxt": {
"port": "3005"
}
},
"dependencies": {
"@nuxtjs/axios": "^5.3.1",
"@nuxtjs/bootstrap-vue": "^2.0.4",
"adorable-avatars": "^0.2.1",
"babel-polyfill": "^6.26.0",
"bootstrap": "^4.1.0",
"inversify": "^4.13.0",
"normalize-scss": "^7.0.1",
"nuxt": "1.4.0",
"perfect-scrollbar": "^0.8.1",
"reflect-metadata": "^0.1.12",
"vue": "^2.5.16",
"vue-perfect-scrollbar": "^0.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.5",
"@types/sinon": "^4.3.1",
"@types/sinon-chai": "^2.7.29",
"@types/sinon-stub-promise": "^2.1.0",
"axios-mock-adapter": "^1.15.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"concurrently": "^3.5.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"del": "^3.0.0",
"glob-fs": "^0.1.7",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^5.0.0",
"gulp-clean-css": "^3.9.3",
"gulp-connect": "^5.5.0",
"gulp-environment": "^1.5.2",
"gulp-extract-text": "^1.0.1",
"gulp-fontmin": "^0.7.4",
"gulp-load-plugins": "^1.5.0",
"gulp-newer": "^1.4.0",
"gulp-noop": "^1.0.0",
"gulp-replace": "^0.6.1",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-style-aliases": "^1.1.11",
"gulp-stylelint": "^7.0.0",
"gulp-uglify": "^3.0.0",
"merge2": "^1.2.1",
"mocha": "^5.1.0",
"node-sass": "^4.8.3",
"nuxt-class-component": "^1.2.1",
"nuxt-i18n": "^2.9.5",
"require.all": "^2.0.4",
"sass-loader": "^7.0.1",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"sinon-stub-promise": "^4.0.0",
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^0.8.1",
"stylelint-processor-html": "^1.0.0",
"stylelint-scss": "^3.0.1",
"ts-loader": "^3.5.0",
"ts-node": "^6.0.0",
"tsconfig-paths": "^3.3.1",
"tslint": "^5.9.1",
"tslint-loader": "^3.6.0",
"typescript": "^2.8.1",
"vue-property-decorator": "^6.0.0",
"vuex-class": "^0.3.1"
}
}