-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 932 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": "streetpix",
"version": "2.0.0",
"private": true,
"workspaces": [
"client",
"server"
],
"scripts": {
"heroku-postbuild": "npm run build -w client",
"lint": "npm run lint -w client && npm run lint -w server",
"lint:changed": "npm run lint:changed -w client; npm run lint:changed -w server",
"postinstall": "patch-package",
"pp": "prettier --write --ignore-unknown .",
"pp:changed": "prettier --write --ignore-unknown $(git diff --name-only; git ls-files -o --exclude-standard)",
"test": "prettier --check . && npm run lint && CI=true npm test -w server"
},
"devDependencies": {
"patch-package": "^7.0.0",
"prettier": "^2.7.1"
},
"engines": {
"node": "18.16.0"
},
"prettier": {
"bracketSameLine": true,
"printWidth": 140,
"singleQuote": true
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"utf-8-validate": "^5.0.9"
}
}