-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.33 KB
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
70
71
72
73
74
75
{
"name": "academy-checkers-ui",
"version": "1.0.0",
"description": "Client elements for the checkers blockchain",
"main": "index.js",
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha --require ts-node/register 'test/**/*.ts'",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test-react": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "ren .\\build\\index.html 200.html & surge .\\build",
"indexer-dev": "npx ts-node src/server/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/b9lab/checkers-ui.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/b9lab/checkers-ui/issues"
},
"dependencies": {
"@cosmjs/stargate": "0.28.11",
"bootstrap": "5.1.3",
"express": "4.18.1",
"jquery": "3.3.1",
"lockr": "0.8.4",
"protobufjs": "7.0.0",
"query-string": "7.1.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-icons": "4.3.1",
"react-loadable": "5.5.0",
"react-router-dom": "6.3.0",
"react-scripts": "5.0.1",
"reactstrap": "9.0.2"
},
"devDependencies": {
"@keplr-wallet/types": "0.11.51",
"@types/chai": "4.3.3",
"@types/dotenv": "8.2.0",
"@types/express": "4.17.13",
"@types/lockr": "0.8.6",
"@types/mocha": "9.1.1",
"@types/node": "18.7.5",
"@types/query-string": "6.3.0",
"@types/react": "18.0.5",
"@types/react-dom": "18.0.1",
"@types/react-fontawesome": "1.6.5",
"@types/react-icons": "3.0.0",
"@types/react-loadable": "5.5.6",
"@types/react-router-dom": "5.3.3",
"@types/reactstrap": "8.7.2",
"chai": "4.3.6",
"dotenv": "16.0.1",
"mocha": "10.0.0",
"react-app-rewired": "2.2.1",
"ts-node": "10.9.1",
"typescript": "4.6.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}