This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
120 lines (120 loc) · 3.7 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
{
"name": "fortify",
"productName": "Fortify",
"version": "2.0.0",
"description": "Fortify enables web applications to use smart cards, local certificate stores and do certificate enrollment",
"main": "out/main.js",
"scripts": {
"postinstall": "ts-node scripts/postinstall",
"sign_data": "ts-node scripts/sign_data",
"start": "electron .",
"build:main": "webpack --config scripts/webpack.main.config.js",
"build:renderer": "webpack --config scripts/webpack.renderer.config.js",
"build:prod": "cross-env NODE_ENV=production yarn build:main && cross-env NODE_ENV=production yarn build:renderer",
"build:dev": "yarn build:main && yarn build:renderer",
"build:schema": "typescript-json-schema ./src/main/types.ts IConfigureJson --required --noExtraProps --strictNullChecks > ./config.schema.json",
"build": "yarn build:prod",
"clear": "rimraf out build",
"rebuild": "yarn clear && yarn build",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./",
"test": "mocha",
"upgrade": "yarn upgrade-interactive"
},
"keywords": [],
"author": {
"name": "Peculiar Ventures",
"email": "[email protected]"
},
"license": "AGPL",
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/extract-zip": "^1.6.2",
"@types/mocha": "^9.1.1",
"@types/node": "^12.12.51",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/request": "^2.48.5",
"@types/rimraf": "^3.0.2",
"@types/semver": "^6.2.1",
"@types/websocket": "^0.0.40",
"@types/ws": "^7.2.6",
"@types/xmldom": "^0.1.30",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"colors": "^1.4.0",
"cross-env": "^7.0.2",
"css-loader": "^5.2.6",
"electron": "13.6.9",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"extract-zip": "^1.7.0",
"fortify-prepare": "github:PeculiarVentures/fortify-prepare",
"json-parser": "^3.1.2",
"mocha": "^10.0.0",
"node-gyp": "^9.0.0",
"prop-types": "^15.7.2",
"request-progress": "^3.0.0",
"rimraf": "^3.0.2",
"sass": "^1.34.0",
"sass-loader": "^10.2.0",
"source-map-loader": "^1.1.3",
"style-loader": "^1.2.1",
"ts-loader": "^8.2.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"typescript-json-schema": "^0.53.1",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"2key-ratchet": "^1.0.18",
"@babel/polyfill": "^7.10.4",
"@peculiar/asn1-schema": "^2.1.9",
"@peculiar/asn1-x509": "^2.1.9",
"@peculiar/webcrypto": "1.0.22",
"@webcrypto-local/cards": "^1.10.2",
"@webcrypto-local/server": "^1.7.8",
"asn1js": "^3.0.5",
"classnames": "^2.2.6",
"get-proxy-settings": "^0.1.11",
"jose-jwe-jws": "github:microshine/js-jose",
"lib-react-components": "^3.0.1",
"mixpanel": "^0.13.0",
"nanoid": "^3.3.2",
"pkcs11js": "^1.3.0",
"pkijs": "^3.0.5",
"public-ip": "^4.0.3",
"pvtsutils": "^1.3.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^6.16.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"semver": "^7.5.2",
"tsyringe": "^4.7.0",
"webcrypto-core": "^1.7.5",
"winston": "^3.3.3",
"winston-transport": "^4.4.0"
},
"resolutions": {
"asn1js": "^3.0.5",
"@peculiar/asn1-schema": "^2.1.9",
"pkijs": "^3.0.5"
},
"mocha": {
"require": [
"ts-node/register"
],
"extension": [
"ts"
],
"spec": [
"test/**/*.ts"
]
}
}