-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "skribbl",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:server": "npm run --prefix ./server dev",
"start:client": "npm --prefix ./client start",
"start": "concurrently npm:start:*",
"lint:server": "npm run --prefix ./server lint",
"lint:client": "npm run --prefix ./client lint",
"lint": "concurrently \"npm run lint:*\"",
"format": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nabinchaulagain/skribbl.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nabinchaulagain/skribbl/issues"
},
"homepage": "https://github.com/nabinchaulagain/skribbl#readme",
"devDependencies": {
"concurrently": "^5.3.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"npm run format"
],
"**/*.{md,html,json}": [
"npm run format"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}