-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.37 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
{
"name": "@blockmason/link-workshop-tor-react",
"version": "2019.4.27",
"description": "React implementation of the Link stamp collector demo app",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "parcel build --no-autoinstall --no-source-maps --out-dir lib src/index.html",
"clean": "rm -fR .cache .nyc_output dist docs",
"coverage": "nyc report",
"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 --out-dir lib src/index.html",
"test": "find src -type f -name spec.js | NODE_ENV=test xargs nyc --silent --check-coverage --lines 100 --per-file mocha --require @babel/register"
},
"devDependencies": {
"@babel/core": "7.5.4",
"@babel/register": "7.4.4",
"babel-eslint": "10.0.2",
"eslint": "6.0.1",
"eslint-plugin-ante": "1.0.2",
"eslint-plugin-react": "7.14.2",
"jsdoc": "3.6.3",
"mocha": "6.1.4",
"nyc": "14.1.1",
"parcel-bundler": "1.12.3"
},
"dependencies": {
"@babel/polyfill": "7.4.4",
"@blockmason/link-sdk": "0.1.4",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-redux": "7.1.0",
"redux": "4.0.4",
"redux-thunk": "2.3.0",
"styled-components": "4.3.2"
}
}