-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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
{
"name": "votely",
"version": "0.0.1",
"description": "Make a difference! Ask the community for their opinion, real time!",
"repository": "[email protected]:modernweb-pl/votely.git",
"author": "ModernWeb <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"client",
"server"
],
"scripts": {
"format": "prettier --write '**/*.{js,ts,html,scss,json}'",
"client": "yarn workspace @votely/client",
"server": "yarn workspace @votely/server",
"start": "concurrently -k 'yarn:server start:dev' 'yarn:client start'"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
},
"lint-staged": {
"*.{js,ts,html,scss,json}": [
"prettier --write",
"git add"
],
"*.ts": [
"tslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"concurrently": "^5.0.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2"
},
"engines": {
"node": ">=10.9.0",
"yarn": "^1.19.0"
}
}