-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
187 lines (187 loc) · 6.59 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
"name": "hypernetlabs",
"version": "0.0.1",
"description": "Hypernet Protocol contracts and SDK",
"license": "ISC",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/GoHypernet/hypernet-protocol.git"
},
"bugs": {
"url": "https://github.com/GoHypernet/hypernet-protocol/issues"
},
"homepage": "https://github.com/GoHypernet/hypernet-protocol#readme",
"author": "Hypernet Labs",
"keywords": [
"Hypernet",
"Blockchain",
"State",
"Channels",
"Galileo",
"Vector"
],
"main": "index.js",
"directories": {
"lib": "lib"
},
"workspaces": {
"nohoist": [
"**/mobileApp",
"**/mobileApp/**"
],
"packages": [
"packages/*"
]
},
"scripts": {
"bootstrap": "yarn install && lerna init && yarn clean-docker && docker-compose pull && docker-compose up -d && wait-on -l -d 15000 package.json && docker-compose up -d && yarn verify-backend",
"build": "yarn clean && yarn compile && yarn postCompile",
"dockerize": "lerna run dockerize",
"docker-push": "lerna run docker-push",
"clean": "rimraf ./packages/*/dist ./packages/*/tsconfig.tsbuildinfo",
"clean-docker": "docker-compose down",
"clean-node": "rimraf node_modules packages/*/node_modules yarn.lock",
"compile": "tsc --build && yarn alias",
"postCompile": "lerna run postCompile",
"alias": "lerna run alias",
"format": "eslint --fix 'packages/**/*.ts' && yarn format:pkg",
"format:pkg": "format-package -w",
"generate-docs": "lerna run generate-docs",
"lint": "eslint \"packages/*/{src,test}/**/*.{ts,tsx}\" --quiet",
"lint:fix": "eslint \"packages/*/{src,test}/**/*.{ts,tsx}\" --quiet --fix",
"prepare-for-publish": "cd packages/objects && yarn build && cd ../gateway-connector && yarn build && cd ../utils && yarn build && cd ../hypernet-core && yarn build && cd ../web-ui && yarn build && cd ../web-integration && yarn build && cd ../",
"start": "docker-compose up user-dashboard",
"start-stable": "VECTOR_TAG=latest docker-compose -f docker-compose-vector.yaml up user-dashboard",
"start-nightly": "VECTOR_TAG=nightly docker-compose -f docker-compose-vector.yaml up user-dashboard",
"start-nightly-secure": "VECTOR_TAG=nightly docker-compose -f docker-compose-vector-secure-nats.yaml up user-dashboard",
"stop-nightly-secure": "VECTOR_TAG=nightly docker-compose -f docker-compose-vector-secure-nats.yaml down",
"start-local": "docker-compose -f docker-compose-vector-local.yaml up user-dashboard",
"dev": "docker-compose --file docker-compose.dev.yaml up --detach && lerna run dev",
"dev2": "lerna run dev",
"test": "lerna run test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.format:pkg": "prettier --write"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@babel/runtime": "^7.8.4",
"@cucumber/cucumber": "^7.0.0",
"@glazed/devtools": "^0.1.3",
"@material-ui/core": "4.12.3",
"@material-ui/icons": "4.11.2",
"@nomiclabs/buidler": "^1.4.3",
"@nomiclabs/buidler-etherscan": "^1.2.0",
"@nomiclabs/buidler-ganache": "^1.3.3",
"@nomiclabs/buidler-solhint": "^1.2.0",
"@nomiclabs/buidler-truffle5": "^1.3.4",
"@nomiclabs/buidler-web3": "^1.3.4",
"@octokit/core": "^3.2.4",
"@react-native-community/eslint-config": "^1.1.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^25.2.3",
"@types/knockout": "^3.4.69",
"@types/pino": "^6.3.2",
"@types/postmate": "^1.5.1",
"@types/puppeteer": "^5.4.3",
"@types/react": "^17.0.0",
"@types/react-combine-reducers": "^1.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-native": "^0.63.2",
"@types/react-router-dom": "^5.1.7",
"@types/react-test-renderer": "^16.9.2",
"@types/reflect-metadata": "^0.1.0",
"@types/sjcl": "^1.0.29",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.22.0",
"@webpack-cli/serve": "^1.2.2",
"babel-jest": "^25.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"buidler-extract": "^1.0.0",
"buidler-gas-reporter": "^0.1.4",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"chai": "^4.3.4",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"copyfiles": "^2.3.0",
"css-loader": "^5.0.1",
"cucumber-tsflow": "^4.0.0-rc.1",
"env-cmd": "^10.1.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-react": "^11.0.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"ethereum-waffle": "^3.2.1",
"file-loader": "^6.2.0",
"format-package": "^6.1.0",
"ganache-cli": "^6.10.1",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.3.2",
"http-server": "^0.12.3",
"https-browserify": "^1.0.0",
"husky": "^5.0.9",
"image-webpack-loader": "^7.0.1",
"jest": "^26.4.2",
"jest-when": "^3.0.1",
"lerna": "^3.22.1",
"lint-staged": ">=10",
"metro-react-native-babel-preset": "^0.59.0",
"monaco-editor-webpack-plugin": "2.0.0",
"node-sass": "4.13.0",
"os-browserify": "^0.3.0",
"postcss": "^8.2.4",
"postcss-loader": "^4.2.0",
"prettier": "^2.2.1",
"process": "^0.11.10",
"puppeteer": "^7.1.0",
"randomstring": "^1.1.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "16.13.1",
"rimraf": "^3.0.2",
"sass-loader": "8.0.0",
"solidity-coverage": "^0.7.9",
"solium": "^1.2.5",
"source-map-loader": "^2.0.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.1.1",
"style-loader": "^2.0.0",
"testdouble": "^3.16.1",
"testdouble-jest": "^2.0.0",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"tsc-alias": "^1.2.6",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typedoc": "^0.20.16",
"typescript": "^4.5.2",
"url-loader": "3.0.0",
"wait-on": "^5.2.0",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.14.0",
"**/@typescript-eslint/parser": "^4.22.0"
}
}