generated from orbs-network/orbs-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1020 Bytes
/
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
{
"name": "orbs-starter-kit",
"version": "0.1.0",
"private": true,
"dependencies": {
"orbs-client-sdk": "0.0.6",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1"
},
"scripts": {
"postinstall": "brew install orbs-network/devtools/gamma-cli",
"start": "PORT=4000 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "prettier --write 'src/**/*.js'",
"gamma:start": "gamma-cli start-local",
"gamma:stop": "gamma-cli stop-local",
"contract:deploy": "gamma-cli deploy ./contracts/counter.go -name counter -signer user1"
},
"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"
]
},
"devDependencies": {
"prettier": "^1.17.1"
},
"prettier": {
"singleQuote": true
}
}