forked from open5e/open5e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "ui",
"version": "1.0.0",
"description": "Nuxt.js project",
"author": "eepMoody <[email protected]>",
"private": true,
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": "3333"
}
},
"scripts": {
"dev": "export API_URL=localhost && node bin/generate.js & nuxt",
"build": "node bin/generate.js && nuxt build",
"analyze": "node bin/generate.js && nuxt build -a",
"start": "nuxt start",
"generate": "node bin/generate.js & nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"static-generate": "node bin/generate.js",
"heroku-postbuild": "node bin/generate.js & npm run build"
},
"dependencies": {
"@nuxtjs/google-analytics": "^2.0.2",
"axios": "^0.18.0",
"nuxt": "^1.0.0",
"vue-showdown": "^2.0.2"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"css-loader": "^1.0.0",
"eslint": "^4.15.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-vue": "^4.0.0",
"mkdirp": "^0.5.1",
"node-sass": "^4.9.2",
"sass-loader": "^7.1.0",
"slugify": "^1.3.1",
"vue-style-loader": "^4.1.1"
}
}