-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "yama-no-tenki",
"version": "0.1.0",
"private": true,
"description": " 山の天気をできるだけ早く検索できます",
"homepage": "https://yamanotenki.netlify.com",
"scripts": {
"build": "react-scripts-ts build",
"eject": "react-scripts-ts eject",
"start": "react-scripts-ts start",
"test": "react-scripts-ts test --env=jsdom",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css}\""
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4
},
"dependencies": {
"@types/lodash.sortby": "^4.7.4",
"@uifabric/icons": "^6.1.1",
"array.prototype.flat": "^1.2.1",
"debounce-promise": "^3.1.0",
"japanese-yama-list": "^1.0.4",
"lodash.sortby": "^4.7.0",
"lodash.uniqby": "^4.7.0",
"office-ui-fabric-react": "^6.75.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-highlight-words": "^0.14.0",
"react-scripts-ts": "3.1.0",
"wanakana": "^4.0.2"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/jsdom": "^11.12.0",
"@types/node": "^10.11.3",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.8",
"husky": "^1.1.0",
"jsdom": "^12.1.0",
"kuroshiro": "^1.1.1",
"kuroshiro-analyzer-kuromoji": "^1.1.0",
"lint-staged": "^7.3.0",
"prettier": "^1.8.1",
"typescript": "^3.1.3"
},
"resolutions": {
"@types/react": "16.4.14",
"@types/react-dom": "16.0.8"
},
"husky": {
"hooks": {
"precommit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
}
}