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 4
/
Copy pathpackage.json
127 lines (127 loc) · 3.67 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@popcorn.moe/web",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/Popcorn-moe/Web.git"
},
"author": "Popcorn-moe",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Popcorn-moe/Web/issues"
},
"homepage": "https://github.com/Popcorn-moe/Web#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\" \"tests/**/*.js\" \"tests/**/*.json\"",
"precommit": "lint-staged",
"test": "npm run test:e2e",
"test:e2e": "concurrently --kill-others \"npm run test:e2e:mock\" \"npm run test:e2e:run\"",
"test:e2e:run": "cross-env NODE_ENV=test testcafe \"chromium\" \"tests/e2e/*.test.js\" --app \"npm start >/dev/null 2>&1\" --app-init-delay 25000 -S -s screenshots",
"test:e2e:mock": "node tests/e2e/mock"
},
"lint-staged": {
"*.{js,vue}": [
"prettier --use-tabs --write",
"git add"
]
},
"dependencies": {
"@popcorn.moe/apollo": "^1.0.0",
"dateformat": "^3.0.3",
"ebml": "^2.2.4",
"fullscreen-api-polyfill": "^1.1.2",
"graphql-tag": "^2.9.2",
"ismobilejs": "^0.4.1",
"marked": "^0.3.19",
"megajs": "^0.13.3",
"vue": "^2.5.17",
"vue-apollo": "^3.0.0-beta.19",
"vue-head": "^2.0.12",
"vue-i18n": "^7.8.1",
"vue-router": "^3.0.1",
"vue-simplemde": "^0.4.8",
"vuetify": "^1.1.14",
"vuex": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^8.6.5",
"babel-eslint": "^8.2.6",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.5",
"babel-plugin-istanbul": "^4.1.6",
"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",
"concurrently": "^3.6.1",
"copy-webpack-plugin": "^4.5.2",
"cors": "^2.8.4",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-html": "^4.0.5",
"exit-hook": "^2.0.0",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"faker": "^4.1.0",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"git-revision-webpack-plugin": "^3.0.3",
"graphql": "^0.13.2",
"graphql-tools": "^3.1.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"lint-staged": "^7.2.2",
"mini-css-extract-plugin": "^0.4.2",
"node-notifier": "^5.2.1",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"ora": "^2.1.0",
"portfinder": "^1.0.17",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.6",
"postcss-url": "^7.3.2",
"prettier": "1.12.1",
"rimraf": "^2.6.2",
"script-ext-html-webpack-plugin": "^2.0.1",
"semver": "^5.5.1",
"shelljs": "^0.8.2",
"style-loader": "^0.21.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"testcafe": "^0.20.5",
"testcafe-vue-selectors": "^3.0.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^1.1.1",
"vue-loader": "^15.4.1",
"vue-style-loader": "^4.1.2",
"vue-svg-loader": "^0.5.0",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.17.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.6",
"webpack-merge": "^4.1.4",
"workbox-webpack-plugin": "^3.4.1"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}