-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 873 Bytes
/
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
{
"name": "qr-hunt",
"version": "1.0.0",
"description": "",
"scripts": {
"install-server": "cd server && npm install",
"vue-lint": "cd client && npm run lint",
"stylelint": "cd client && npm run stylelint",
"prettier-server": "cd server && npm run prettier",
"eslint-server": "cd server && npm run eslint"
},
"devDependencies": {
"husky": "4.3.8",
"lint-staged": "10.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VictorWinberg/qr-hunt.git"
},
"author": "VictorWinberg, AnnieLeonia",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"client/**/*.{vue,ts}": "npm run vue-lint",
"client/**/*.{vue,scss}": "npm run stylelint",
"server/**/*.js": [
"npm run eslint-server",
"npm run prettier-server"
]
}
}