-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 2.65 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "succinctcoin",
"version": "1.0.0",
"description": "minimalistic crypto-currency",
"scripts": {
"test": "jest --ci --coverage --reporters=default ",
"test:ci": "jest --watch",
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:all": "yarn compile && electron-builder -mwl",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"lint": "eslint . --ext .js,.ts"
},
"keywords": [
"echowaves",
"succinct coin",
"SuccinctCoin",
"electron",
"react"
],
"author": "Echowaves <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-loader": "8.1.0",
"big.js": "6.0.2",
"body-parser": "1.19.0",
"bootstrap": "4.5.3",
"cors": "2.8.5",
"electron-is-dev": "1.2.0",
"express": "4.17.1",
"flash-store": "0.20.6",
"fs-extra": "9.0.1",
"ipfs": "0.51.0",
"ipfs-pubsub-room": "2.0.1",
"libp2p": "0.29.2",
"libp2p-gossipsub": "0.6.4",
"libp2p-kad-dht": "0.20.1",
"libp2p-mdns": "^0.15.0",
"libp2p-mplex": "0.10.1",
"libp2p-pubsub": "0.6.0",
"libp2p-secio": "0.13.1",
"libp2p-tcp": "^0.15.1",
"moment": "2.29.1",
"node-fetch": "2.6.1",
"obj2fs-hoc": "1.3.2",
"react": "17.0.1",
"react-bootstrap": "1.4.0",
"react-dom": "17.0.1",
"react-router-dom": "5.2.0",
"source-map-support": "0.5.19",
"uuid": "8.3.1",
"wrtc": "0.4.6"
},
"build": {
"appId": "com.echowaves.SuccinctCoin",
"files": [],
"mac": {
"target": "dmg",
"icon": "src/static/assets/logo.png"
},
"win": {
"target": "nsis",
"icon": "src/static/assets/logo.png"
},
"linux": {
"target": "deb",
"icon": "src/static/assets/logo.png",
"category": "Development"
}
},
"homepage": "./",
"devDependencies": {
"@babel/cli": "7.12.1",
"@babel/core": "7.12.3",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/preset-react": "7.12.1",
"@testing-library/react": "11.1.0",
"babel-eslint": "10.1.0",
"concurrently": "5.3.0",
"cross-env": "7.0.2",
"electron": "10.1.5",
"electron-builder": "22.9.1",
"electron-webpack": "2.8.2",
"eslint": "7.12.1",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "26.6.1",
"kind-of": "6.0.3",
"nodemon": "2.0.6",
"webpack": "4.44.2"
},
"electronWebpack": {
"renderer": {
"webpackConfig": "webpack.renderer.additions.js"
}
},
"jest": {
"testEnvironment": "node"
}
}