-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 2.92 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "shogi-board",
"version": "3.2.0",
"private": true,
"author": "murosan",
"description": "shogi board on browser",
"license": "MIT",
"keywords": [
"shogi",
"board",
"japanese chess",
"将棋",
"検討",
"ブラウザ",
"将棋ソフト"
],
"repository": {
"type": "git",
"url": "https://github.com/murosan/shogi-board"
},
"bugs": "https://github.com/murosan/shogi-board/issues",
"homepage": "https://murosan.github.io/shogi-board",
"engines": {
"node": ">=14.7.0"
},
"dependencies": {
"@types/clipboard": "^2.0.7",
"@types/enzyme": "3.10.4",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "27.5.1",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "13.1.2",
"@types/react": "16.9.17",
"@types/react-dom": "16.9.4",
"@types/shortid": "^0.0.29",
"axios": "^0.27.2",
"interval-promise": "^1.4.0",
"lodash.debounce": "^4.0.8",
"mobx": "^6.6.0",
"mobx-react-lite": "3.4.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-scripts": "5.0.1",
"sass": "1.79.3",
"shortid": "2.2.16",
"typescript": "4.7.3"
},
"devDependencies": {
"codecov": "^3.8.3",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"gh-pages": "4.0.0",
"husky": "^8.0.0",
"jest": "27.5.1",
"lint-staged": "^13.0.1",
"prettier": "^2.7.1",
"react-test-renderer": "16.12.0",
"source-map-explorer": "^2.5.2",
"ts-jest": "27.1.5"
},
"scripts": {
"start": "react-scripts start",
"start:doc": "cd document/website; yarn start",
"build": "react-scripts build",
"deploy": "bin/deploy.sh",
"test": "react-scripts test",
"test:c": "react-scripts test --coverage --watchAll=false",
"test:debug": "react-scripts --inspect-brk test --runInBand",
"test:ci": "CI=true node --max_old_space_size=1024 --trace-gc ./node_modules/react-scripts/bin/react-scripts.js test --maxWorkers=2 --coverage --reporters=default",
"lint": "prettier --write '**/*.{js,jsx,ts,tsx,json,yml,css,scss,md,html}'",
"analyze": "source-map-explorer build/static/js/main.*",
"prepare": "husky install"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,yml,css,scss,md,html}": [
"prettier --write",
"git add"
]
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/src/index.tsx",
"!<rootDir>/src/config/*.js",
"!<rootDir>/src/serviceWorker.ts"
]
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}