This repository has been archived by the owner on May 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
54 lines (54 loc) · 1.89 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
{
"name": "swarm-city",
"license": "MIT",
"private": true,
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"bn.js": "^4.11.8",
"browser-sync": "^2.26.3",
"buffer": "^5.2.1",
"crypto": "^1.0.1",
"eslint": "^5.5.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-html": "^4.0.5",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^5.2.0",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"polymer-cli": "^1.8.0",
"qrcode": "^1.2.2",
"scryptsy": "^2.0.0",
"uuid": "^3.3.2",
"web3-eth-contract": "1.0.0-beta.35",
"web3-providers-ws": "1.0.0-beta.35",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0"
},
"scripts": {
"start": "polymer serve",
"lint": "npm run lint:javascript",
"lint:javascript": "eslint . --ext js,html --ignore-path .eslintignore",
"test": "polymer test",
"mocha": "mocha \"test/**/*.test.js\"",
"test:integration": "polymer build # test that psk builds without error with the CLI",
"build": "npm install && npm run webpack && node --max-old-space-size=8192 ./node_modules/.bin/polymer build",
"build:nowp": "node --max-old-space-size=8192 ./node_modules/.bin/polymer build --verbose",
"build:fix": "node --max-old-space-size=8192 ./node_modules/.bin/polymer build --verbose --add-service-worker",
"serve": "polymer serve build/es6-bundled",
"push": "git add build/es6-bundled -f && git commit -m 'deploying to branch' && git subtree push --prefix build/es6-bundled origin gh-pages",
"webpack": "npx webpack --config ./webpack/webpack.config.js",
"check": "npm run build && npm run serve"
},
"dependencies": {
"bs58": "^4.0.1",
"deepmerge": "^2.1.1",
"eth-crypto": "^1.2.7",
"ethjs": "^0.4.0",
"ipfs-api": "^24.0.1",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"tweetnacl": "^1.0.0",
"tweetnacl-util": "^0.15.0",
"web3": "^1.0.0-beta.36"
}
}