-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 907 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
35
36
37
{
"private": true,
"name": "philan.net",
"version": "1.0.0",
"scripts": {
"bootstrap": "cd web/ && cp .env.example .env.development.local && yarn install",
"test": "cd web && npm run test",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azu/philan.net.git"
},
"keywords": [],
"author": "azu",
"license": "MIT",
"bugs": {
"url": "https://github.com/azu/philan.net/issues"
},
"homepage": "https://github.com/azu/philan.net#readme",
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"devDependencies": {
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
}
}