-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "eq-author-app",
"version": "1.0.0",
"description": "Author is an application for building questionnaires that run on the [Survey Runner](https://github.com/ONSDigital/eq-survey-runner) platform.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"pre-push-lint": " cd eq-author-api && yarn lint && cd ../eq-publisher && yarn lint",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ONSdigital/eq-author-app.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ONSdigital/eq-author-app/issues"
},
"homepage": "https://github.com/ONSdigital/eq-author-app#readme",
"dependencies": {
"husky": "latest",
"lint-staged": "10.5.4",
"prettier": "^2.5.1",
"prettylint": "latest"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn pre-push-lint"
}
},
"prettier": {
"trailingComma": "es5"
}
}