forked from dubzzz/connect-four-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.78 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
{
"name": "connect-four-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.3.2",
"@material-ui/icons": "^3.0.1",
"@types/enzyme": "^3.1.14",
"@types/jest": "23.3.9",
"@types/node": "10.12.1",
"@types/react": "16.4.18",
"@types/react-dom": "16.0.9",
"@types/react-redux": "6.0.9",
"@types/react-router-dom": "^4.3.1",
"@types/selenium-webdriver": "^3.0.13",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"jest": "^23.6.0",
"jest-enzyme": "^7.0.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-redux": "^5.1.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.5",
"ts-jest": "^23.10.5",
"typescript": "^3.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format:check": "prettier --list-different \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"test-e2e": "jest --config jest-e2e.config.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"fast-check": "^1.10.0",
"husky": "^1.1.2",
"lint-staged": "^8.0.0",
"prettier": "1.14.3",
"selenium-webdriver": "^3.6.0",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write",
"git add"
]
},
"homepage": "https://dubzzz.github.io/connect-four-react"
}