-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 979 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
{
"name": "@fedelman/gol",
"scope": "fedelman",
"version": "1.0.0",
"description": "Game of Life",
"author": "Falk Edelmann <falk.edelmann@codecentric.de>",
"private": true,
"license": "MIT",
"workspaces": [
"gol_wasm",
"app"
],
"scripts": {
"prettier:check": "prettier --config .prettierrc --check \"app/src/**/*.{js,jsx,ts,tsx,json,css,scss}\"",
"prettier": "prettier --config .prettierrc --write \"app/src/**/*.{js,jsx,ts,tsx,json,css,scss}\"",
"format": "lerna run format --scope @fedelman/gol_wasm"
},
"devDependencies": {
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"app/src/**/*.{js,jsx,ts,tsx,json,css,scss}": [
"prettier --config .prettierrc --write"
]
}
}