This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 3.04 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
{
"name": "@popcorn.moe/admin",
"version": "1.0.0",
"description": "Popcorn.moe Admin",
"repository": {
"type": "git",
"url": "git+https://github.com/Popcorn-moe/Admin.git"
},
"author": "Popcorn-moe",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Popcorn-moe/Admin/issues"
},
"homepage": "https://github.com/Popcorn-moe/Admin#readme",
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"lint": "eslint --ext .js,.vue src",
"build": "node build/build.js",
"format": "prettier --write --use-tabs 'src/**/*.js' 'src/**/*.vue' 'src/**/*.json'",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"prettier --use-tabs --write",
"git add"
]
},
"dependencies": {
"@popcorn.moe/apollo": "^1.0.0",
"algoliasearch": "^3.27.1",
"clone": "^2.1.2",
"graphql-tag": "^2.9.2",
"marked": "^0.3.19",
"mavon-editor": "^2.6.3",
"md5": "^2.2.1",
"moment": "^2.22.1",
"unhandled-rejection-polyfill": "^1.0.5",
"vue": "^2.5.16",
"vue-apollo": "^3.0.0-beta.10",
"vue-color": "^2.4.6",
"vue-router": "^3.0.1",
"vuetify": "^1.0.18",
"vuex": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^8.5.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-imports": "^1.5.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"chalk": "^2.4.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.3",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.1",
"mini-css-extract-plugin": "^0.4.0",
"node-notifier": "^5.2.1",
"optimize-css-assets-webpack-plugin": "^4.0.1",
"ora": "^2.1.0",
"portfinder": "^1.0.13",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.5",
"postcss-url": "^7.3.2",
"prettier": "1.12.1",
"rimraf": "^2.6.2",
"semver": "^5.5.0",
"shelljs": "^0.8.2",
"style-loader": "^0.21.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"vue-loader": "^15.1.0",
"vue-style-loader": "^4.1.0",
"vue-svg-loader": "^0.5.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.8.3",
"webpack-bundle-analyzer": "^2.12.0",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}