-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.29 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
{
"name": "my-project",
"version": "1.0.0",
"description": "Nuxt.js project",
"author": "Hanbyul Jo <[email protected]>",
"scripts": {
"initial-build": "INITIAL_BUILD=true nuxt generate",
"incremental-build": "node move-cache-back",
"dev": "DEPLOY_ENV=DEV nuxt",
"build": "nuxt build",
"start": "nuxt start",
"clean-all": "rm -rf .nuxt; rm -rf dist;rm -rf .nuxt_build;",
"generate": "nuxt generate",
"clean-build": "node empty-cache; npm run generate;",
"generate-netlify": "DEPLOY_ENV=PRODUCTION nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxtjs/axios": "^5.5.2",
"bulma": "^0.7.5",
"nuxt": "^2.14.12"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-plugin-dynamic-import-node": "^2.2.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-vue": "5.0.0-beta.4",
"fs-extra": "^8.0.1",
"node-sass": "^4.14.1",
"nuxt-purgecss": "^0.2.1",
"prettier": "1.15.2",
"rsync": "^0.6.1",
"sass-loader": "^7.1.0"
}
}