-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "react-connect-four",
"version": "0.5.3",
"private": true,
"description": "Connect Four Game in React",
"keywords": [],
"homepage": "https://jnmorse.github.io/react-connect-four",
"bugs": {
"url": "https://github.com/jnmorse/react-connect-four/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jnmorse/react-connect-four.git"
},
"license": "MIT",
"author": "Joseph Morse <tamed.lionheart@gmail.com>",
"main": "index.js",
"scripts": {
"prebuild": "npm run lint",
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint .",
"prerelease": "CI=true npm run test",
"release": "standard-version --sign",
"prechangelog": "rm CHANGELOG.md",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"test": "react-scripts test"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"eslint-config-jnmorse": "^2.3.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-redux": "^7.0.3",
"react-scripts": "3.0.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.0",
"eslint": "^5.16.0",
"gh-pages": "^2.0.1",
"standard-version": "^6.0.1"
}
}