-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.36 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
{
"name": "vuetify",
"description": "Vue.js 2 Semantic Component Framework",
"version": "1.5.8",
"author": {
"name": "John Leider",
"email": "john@vuetifyjs.com"
},
"license": "MIT",
"homepage": "http://vuetifyjs.com",
"repository": "vuetifyjs/vuetify",
"main": "dist/vuetify.js",
"module": "dist/vuetify.js",
"jsdelivr": "dist/vuetify.js",
"unpkg": "dist/vuetify.js",
"types": "types/index.d.ts",
"sideEffects": [
"*.styl",
"*.css"
],
"scripts": {
"watch": "cross-env TARGET=development webpack --config build/config.js --progress --hide-modules --watch",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.dev.config.js --hot",
"build": "concurrently \"yarn build:dist --no-progress\" \"yarn build:lib\" -n \"dist,lib\" --kill-others-on-fail -r",
"build:dist": "rimraf dist && cross-env NODE_ENV=production webpack --config build/config.js --progress --hide-modules",
"build:lib": "node build/build-lib.js",
"debug:test": "cross-env NODE_ENV=test node --inspect --inspect-brk ./node_modules/jest/bin/jest.js --no-cache -i --verbose",
"test": "node build/run-tests.js",
"test:unix": "cross-env NODE_ENV=test jest",
"test:win32": "cross-env NODE_ENV=test jest -i",
"test:coverage": "yarn test --coverage",
"test:types": "tsc -p ./types/test/tsconfig.json",
"lint": "concurrently -n \"tsc,tslint,eslint,types\" --kill-others-on-fail \"tsc --noEmit --pretty\" \"tslint -p . src/**/*.ts -t verbose\" \"eslint --ext .js,.ts src\" \"yarn test:types\"",
"lint:fix": "concurrently -n \"tsc,tslint,eslint,types\" --kill-others-on-fail \"tsc --noEmit --pretty\" \"tslint --fix -p . -c .tslint.js src/**/*.ts -t stylish\" \"eslint --fix --ext .js,.ts src\" \"yarn test:types\""
},
"devDependencies": {
"@mdi/font": "^3.0.39",
"@types/jest": "^22.2.3",
"@types/node": "^10.12.0",
"autoprefixer": "^9.4.7",
"avoriaz": "^6.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-detective": "^2.0.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-transform-define": "^1.3.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.8",
"dotenv": "^6.2.0",
"eslint": "^5.13.0",
"eslint-loader": "^2.1.2",
"file-loader": "^3.0.1",
"fork-ts-checker-webpack-plugin": "^0.5.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"happypack": "^5.0.1",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"typescript": "^3.3.3",
"url-loader": "^1.1.2",
"vue-loader": "^15.6.2",
"vue-router": "^3.0.2",
"vue-template-es2015-compiler": "^1.8.2",
"vuetify-loader": "^0.2.0",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"peerDependencies": {
"vue": "^2.5.18"
},
"publishConfig": {
"access": "public"
}
}