-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 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
45
46
47
48
49
50
51
{
"name": "@svef/websites",
"version": "0.0.1",
"license": "MIT",
"private": true,
"author": {
"name": "Samtök vefiðnaðarins",
"email": "[email protected]",
"url": "https://www.svef.is"
},
"contributors": [
{
"name": "Benedikt D Valdez",
"email": "[email protected]",
"url": "https://www.valdez.is"
},
{
"name": "Ægir Þorsteinsson",
"email": "[email protected]",
"url": "https://thorsteinsson.is"
}
],
"scripts": {
"deploy:submit.vefverdlaun.is": "cd websites/submit.vefverdlaun.is && yarn run build && yarn run deploy",
"precommit": "lint-staged",
"test": "echo \"No tests yet\""
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"workspaces": [
"components",
"styles",
"websites/*"
],
"devDependencies": {
"buffered-reader": "^1.0.1",
"chalk": "^2.3.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "^1.9.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}