-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
105 lines (105 loc) · 2.96 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
{
"name": "polykey",
"productName": "polykey",
"version": "0.0.1",
"homepage": "https://polykey.io",
"author": "Matrix AI",
"contributors": [
{
"name": "Aashwin Varshney"
},
{
"name": "Gideon Rosales"
},
{
"name": "Robert Cronin"
},
{
"name": "Lucas Lin"
},
{
"name": "Roger Qiu"
}
],
"description": "A peer-to-peer secret sharing and management application",
"keywords": [
"secrets"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/MatrixAI/PolyKey.git"
},
"main": "dist/index.js",
"scripts": {
"watch": "webpack-cli --watch --mode='development'",
"build": "webpack-cli --mode='production'",
"devbuild": "webpack-cli --mode='development'",
"ts-node": "ts-node -r tsconfig-paths/register",
"test": "jest",
"lint": "eslint '{src,tests}/**/*.{js,ts}'",
"lintfix": "eslint '{src,tests}/**/*.{js,ts}' --fix"
},
"devDependencies": {
"@ant-design/icons-vue": "^5.1.9",
"@babel/preset-env": "^7.13.10",
"@electron-forge/cli": "^6.0.0-beta.54",
"@electron-forge/maker-deb": "^6.0.0-beta.54",
"@electron-forge/maker-rpm": "^6.0.0-beta.54",
"@electron-forge/maker-squirrel": "^6.0.0-beta.54",
"@electron-forge/maker-zip": "^6.0.0-beta.54",
"@matrixai/logger": "^2.0.1",
"@matrixai/polykey": "file:../js-polykey",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"@vue/compiler-sfc": "^3.0.5",
"@vue/test-utils": "^2.0.0-beta.14",
"ant-design-vue": "^2.0.0-rc.8",
"autoprefixer": "^10.2.6",
"babel-jest": "^26.6.3",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.1",
"ejs-webpack-loader": "^2.2.2",
"electron": "12.0.9",
"electron-squirrel-startup": "^1.0.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.5.0",
"file-loader": "^6.2.0",
"file-saver": "^2.0.5",
"fix-path": "^3.0.0",
"html-webpack-plugin": "^5.0.0-beta.6",
"jdenticon": "^3.1.0",
"jest": "^26.6.3",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^1.3.3",
"path-browserify": "^1.0.1",
"postcss-loader": "^5.2.0",
"prettier": "^2.2.1",
"source-map-loader": "^2.0.0",
"style-loader": "^2.0.0",
"tailwindcss": "^2.0.2",
"ts-custom-error": "^3.2.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.4",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.1.3",
"vue": "^3.0.5",
"vue-jest": "^5.0.0-alpha.7",
"vue-loader": "^16.1.2",
"vue-router": "^4.0.3",
"vue-svg-loader": "^0.17.0-beta.2",
"vuex": "^4.0.0-rc.2",
"webpack": "^5.11.1",
"webpack-cli": "^4.7.2"
},
"config": {
"forge": "./forge.config.js"
},
"private": true
}