forked from privacybydesign/irma_signature_app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.75 KB
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
{
"name": "IRMA_signature_app",
"version": "1.0.0",
"description": "An IRMA app to create IRMA signatures",
"main": "main.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build-go": "go build -o go/get_all_attributes go/get_all_attributes.go && go build -o go/irma_signature_verify go/irma_signature_verify.go",
"lint": "./node_modules/.bin/eslint -c .eslintrc src",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron ."
},
"repository": "https://github.com/privacybydesign/irma_signature_app",
"keywords": [
"Electron",
"IRMA"
],
"author": "Privacy By Design Foundatation",
"license": "Apache",
"devDependencies": {
"electron": "~1.8.2",
"electron-devtools-installer": "^2.2.4",
"electron-react-devtools": "^0.5.3",
"eslint": "4.8.0",
"eslint-config-airbnb": "15.1.0",
"eslint-config-react-app": "2.0.1",
"eslint-plugin-flowtype": "2.39.1",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.4.0",
"@material-ui/core": "1.3.1",
"material-ui-dropzone": "1.0.3",
"@material-ui/icons": "1.1.0",
"react": "16.3.0",
"react-dom": "16.3.0",
"react-scripts": "1.1.1"
},
"dependencies": {
"antd": "3.4.2",
"big-integer": "1.6.27",
"electron-is-dev": "^0.3.0",
"electron-json-storage": "4.1.0",
"flatten": "1.0.2",
"process": "0.11.10",
"react-flexbox-grid": "2.0.0",
"react-helmet": "^5.2.0",
"react-redux": "5.0.7",
"react-router-dom": "4.2.2",
"react-select": "1.2.1",
"recompose": "0.26.0",
"redux": "3.7.2",
"redux-logger": "3.0.6",
"redux-thunk": "2.2.0",
"shelljs": "0.8.1"
}
}