-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.99 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
{
"name": "@hideoutchat/web-client",
"version": "1.0.2",
"license": "MIT",
"homepage": "https://hideout.chat/",
"bugs": "https://github.com/hideoutchat/web-client/issues",
"repository": {
"type": "git",
"url": "https://github.com/hideoutchat/web-client.git"
},
"scripts": {
"build": "parcel build --no-autoinstall --no-source-maps --out-dir lib src/index.html",
"coverage": "nyc report",
"deploy": "aws s3 sync --delete --acl public-read lib/ \"s3://${HIDEOUT_S3_BUCKET}/\" && aws cloudfront create-invalidation --distribution-id \"${HIDEOUT_CLOUDFRONT_DISTRIBUTION}\" --paths /",
"documentation": "rm -fR docs; find src -type f -name index.js | xargs jsdoc --destination ./docs --package ./package.json --readme ./README.md",
"lint": "eslint src",
"start": "parcel serve --no-autoinstall --no-hmr --https --port 7040 --host localhost --out-dir lib src/index.html",
"test": "NODE_ENV=test nyc --silent --check-coverage --lines 100 --per-file mocha --require @babel/register src/spec.setup.js src/**/spec.js"
},
"dependencies": {
"@hideoutchat/web-sdk": "0.1.3",
"prop-types": "15.7.2",
"react": "16.10.0",
"react-dom": "16.10.0",
"react-markdown": "4.2.2",
"react-redux": "7.1.1",
"react-router-dom": "5.1.0",
"react-select": "3.0.5",
"react-transition-group": "4.3.0",
"redux": "4.0.4",
"redux-thunk": "2.3.0",
"regenerator-runtime": "0.13.3",
"sha3": "2.0.7",
"styled-components": "4.4.0"
},
"devDependencies": {
"@babel/cli": "7.6.2",
"@babel/core": "7.6.2",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/preset-env": "7.6.2",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.6.2",
"babel-eslint": "10.0.3",
"chai": "4.2.0",
"eslint": "6.4.0",
"eslint-plugin-ante": "1.0.3",
"eslint-plugin-react": "7.14.3",
"jsdoc": "3.6.3",
"mocha": "6.2.0",
"nyc": "14.1.1",
"parcel-bundler": "1.12.3",
"sinon": "7.5.0",
"sinon-chai": "3.3.0"
}
}