-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
51 lines (51 loc) · 1.58 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
{
"name": "gustavo",
"version": "1.0.0",
"description": "A (mostly) headless blogging platform built atop Nuxt & Gist.",
"author": "Brian Gonzalez <[email protected]>",
"scripts": {
"dev": "nodemon ./server/babel-register.js",
"start": "node ./server/babel-register.js",
"precommit": "npm run lint",
"lint": "eslint --ext .html,.js,.vue --ignore-path .gitignore .",
"docker-publish": "docker build -t eggplanet/gustavo . && docker push eggplanet/gustavo"
},
"dependencies": {
"@nuxtjs/component-cache": "^1.1.0",
"@nuxtjs/google-analytics": "^1.0.0",
"@nuxtjs/pwa": "^1.0.2",
"apicache": "^1.1.0",
"axios": "^0.16.2",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"compression": "^1.7.1",
"express": "^4.16.1",
"express-http-proxy": "^1.0.7",
"highlight.js": "^9.12.0",
"html-element": "^2.2.0",
"lodash.uniqby": "^4.7.0",
"morgan": "^1.9.0",
"node-sass": "^4.5.3",
"normalize.css": "^7.0.0",
"nuxt": "^1.0.0-rc11",
"sass-loader": "^6.0.6",
"showdown": "^1.7.6",
"source-map-support": "^0.5.0",
"vue-moment": "^2.0.2",
"xmldom": "^0.1.27"
},
"babel-cli": "^6.26.0",
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-preset-env": "^1.6.0",
"eslint": "^4.8.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^2.1.0",
"nodemon": "^1.12.1"
}
}