-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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": "@counterfactual/dapp-tic-tac-toe",
"version": "0.1.2",
"engines": {
"yarn": "1.17.3",
"node": "10.15.3"
},
"dependencies": {
"@counterfactual/apps": "0.1.9",
"@counterfactual/cf.js": "0.2.6",
"@counterfactual/types": "0.0.38",
"@counterfactual/typescript-typings": "0.1.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"react-scripts": "3.0.1"
},
"scripts": {
"start": "SKIP_PREFLIGHT_CHECK=true react-scripts start",
"build": "SKIP_PREFLIGHT_CHECK=true react-scripts build && cp src/_redirects build/_redirects",
"netlify": "sh netlify.sh",
"test": "SKIP_PREFLIGHT_CHECK=true CI=true react-scripts test --setupFiles ./src/testSetup.js",
"eject": "SKIP_PREFLIGHT_CHECK=true react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"description": "A game of Tic Tac Toe in a state channel, using the Counterfactual framework",
"author": "Patience Tema Baron <[email protected]>",
"homepage": "https://counterfactual.com",
"license": "MIT",
"main": "src/index.js",
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/counterfactual/dapps-bots.git"
},
"bugs": {
"url": "https://github.com/counterfactual/dapps-bots/issues"
}
}