-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
{
"name": "nuxt-app",
"version": "0.2.0",
"description": "Admin UI and API for SmartMedia projects",
"author": "Sapphire",
"private": true,
"scripts": {
"generate": "nuxt generate",
"build": "nuxt build",
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"server": "cross-env NUXT_MODE=off npm run dev",
"start": "cross-env NODE_ENV=production node server/index.js",
"prettier": "prettier --write '{client,server}/**/*.{js,vue,scss,json}' '!client/assets/**/*.js'",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"lint:stage": "npm run prettier && npm run lint:fix",
"heroku-postbuild": "npm run build"
},
"engines": {
"node": "13.x"
},
"lint-staged": {
"*.{js,vue}": [
"npm run lint:stage"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verify-commit.js"
}
},
"dependencies": {
"consola": "^2.11.3",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"nuxt": "^2.12.2"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.2",
"@nuxtjs/eslint-module": "^1.2.0",
"@vue/eslint-config-standard": "^5.1.2",
"babel-eslint": "^10.1.0",
"chalk": "^4.0.0",
"eslint": "^6.8.0",
"eslint-plugin-nuxt": "^0.5.2",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"nodemon": "^2.0.3",
"prettier": "^2.0.5"
}
}