-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.82 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.82 KB
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": "egghead.space",
"license": "AGPL-3.0",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git://github.com/sne11ius/egghead.space.git"
},
"scripts": {
"dev": "node server",
"start": "cross-env NODE_ENV=production node server",
"build": "rimraf public/assets && rimraf functions/apis/server/assets && npm run build:client && npm run build:server && npm run copyfunctions",
"deploy": "( git pull && npm install && cd functions && npm install && cd .. && npm run build && firebase deploy ) | gnomon --type=elapsed-total",
"build:client": "cross-env NODE_ENV=production webpack --config build/webpack.client.config.js --progress --hide-modules",
"build:server": "cross-env NODE_ENV=production webpack --config build/webpack.server.config.js --progress --hide-modules",
"copyfunctions": "copyfiles -u 1 public/assets/* router/301.json functions/apis/server && rimraf public/assets/vue-ssr-server-bundle.json && rimraf functions/apis/server/index.template.html && copyfiles -u 1 assets/index.template.html functions/apis/server"
},
"engines": {
"node": ">=7.0",
"npm": ">=4.0"
},
"dependencies": {
"@uppy/core": "^0.26.0",
"@uppy/dashboard": "^0.26.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"compression": "^1.6.2",
"cross-env": "^5.0.0",
"date-fns": "^1.29.0",
"easymde": "github:sne11ius/easy-markdown-editor#b60b3cd",
"es6-promise": "^4.1.0",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^2.1.0",
"firebase": "^5.2.0",
"firebase-admin": "~5.12.1",
"firebase-functions": "^1.1.0",
"firebaseui": "^3.1.1",
"lru-cache": "^4.1.1",
"markdown-it": "^8.4.1",
"marked": "^0.4.0",
"normalize.css": "^8.0.0",
"particles.js": "^2.0.0",
"serialize-javascript": "^1.3.0",
"serve-favicon": "^2.3.2",
"shave": "^2.2.1",
"striptags": "^3.1.1",
"uuid": "^3.3.2",
"vue": "^2.4.2",
"vue-instantsearch": "^1.7.0",
"vue-no-ssr": "^0.2.2",
"vue-router": "^3.0.1",
"vue-scrollto": "^2.11.0",
"vue-server-renderer": "^2.4.2",
"vuetify": "^1.1.1",
"vuetify-confirm": "0.0.6",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@vue/eslint-config-prettier": "^3.0.0-rc.3",
"autoprefixer": "^8.6.4",
"babel-core": "^6.22.1",
"babel-loader": "^7.0.0",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-transform-imports": "^1.5.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.4.3",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.22.0",
"copyfiles": "^2.0.0",
"css-loader": "^0.28.0",
"eslint": "^4.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.5.0",
"eventsource-polyfill": "^0.9.6",
"file-loader": "^0.11.1",
"friendly-errors-webpack-plugin": "^1.6.1",
"gnomon": "^1.5.0",
"highlight.js": "^9.8.0",
"html-webpack-plugin": "^2.24.1",
"lint-staged": "^7.2.0",
"node-sass": "^4.5.3",
"object.values": "^1.0.4",
"pug": "^2.0.0-beta3",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"script-ext-html-webpack-plugin": "^1.3.4",
"style-loader": "^0.21.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"sw-precache-webpack-plugin": "^0.11.5",
"url-loader": "^0.5.8",
"vue-loader": "^12.2.2",
"vue-style-loader": "^3.0.0",
"vue-template-compiler": "^2.4.2",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1",
"webpack-merge": "^4.0.0",
"webpack-node-externals": "^1.5.4"
}
}