-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.73 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
{
"name": "kyoryu-no-go-client",
"version": "0.1.0",
"private": true,
"homepage": "https://arrested-developer.com/kyoryu-no-go",
"dependencies": {
"classnames": "^2.2.6",
"materialize-css": "^1.0.0",
"react": "^16.6.3",
"react-dimensions": "^1.3.1",
"react-dom": "^16.6.3",
"react-redux": "^5.1.1",
"react-scripts": "2.1.1",
"redux": "^4.0.1",
"redux-actions": "^2.6.4",
"redux-logger": "^3.0.6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"deploy": "rsync -avl --delete --progress --stats build/ [email protected]:/var/www/html/kyoryu-no-go/",
"test": "react-scripts test",
"test:debug": "react-scripts --inspect-brk test --runInBand",
"test:ci": "CI=true react-scripts test --env=jsdom && cat pika.txt",
"coverage": "yarn test --coverage --collectCoverageFrom=\"src/(actions|reducers|components)/**/*.{js,jsx,ts,tsx}\"",
"stryker:run": "STRYKER_DASHBOARD_API_KEY=2d778659-73d0-420a-849e-1eb832a60c9f yarn stryker run",
"eject": "react-scripts eject",
"prettier": "prettier --write --tab-width 4 --single-quote --trailing-comma all \"src/**/*.+(js|jsx)\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"jest-chain": "^1.0.5",
"jest-dom": "^2.1.1",
"node-sass": "^4.10.0",
"prettier": "^1.15.2",
"react-test-renderer": "^16.6.3",
"react-testing-library": "^5.3.1",
"stryker": "^0.33.1",
"stryker-api": "^0.22.0",
"stryker-cli": "^0.2.0",
"stryker-html-reporter": "^0.16.9",
"stryker-javascript-mutator": "^0.12.1",
"stryker-jest-runner": "^1.2.9"
}
}