This repository was archived by the owner on Aug 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.5 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.5 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
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
{
"name": "react-components",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"sideEffects": false,
"scripts": {
"test": "jest",
"export": "./makeExport",
"i18n:validate": "proton-i18n validate lint-functions {helpers,containers,components,hooks}",
"i18n:validate:context": "proton-i18n extract reactComponents && proton-i18n validate",
"lint": "eslint index.ts containers components hooks typings --ext .js,.ts,.tsx --quiet",
"pretty": "prettier --write $(find . -path ./node_modules -prune -o -type f -name '*.js' -o -name '*.ts' -o -name '*.tsx')",
"check-types": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProtonMail/react-components.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"(*.ts|*.tsx|*.js)": [
"prettier --write",
"eslint",
"git add"
],
"(*.scss)": [
"prettier --write"
]
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ProtonMail/react-components/issues"
},
"homepage": "https://github.com/ProtonMail/react-components#readme",
"dependencies": {
"@types/blueimp-load-image": "^2.23.7",
"@types/card-validator": "^4.1.0",
"@types/codemirror": "0.0.76",
"@types/credit-card-type": "^7.0.0",
"@types/markdown-it": "^10.0.1",
"@types/qrcode.react": "^1.0.1",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.5",
"@types/react-virtualized": "^9.21.10",
"card-validator": "^6.1.0",
"codemirror": "^5.46.0",
"date-fns": "^2.6.0",
"design-system": "github:ProtonMail/design-system#master",
"intersection-observer": "^0.5.1",
"libphonenumber-js": "^1.9.11",
"markdown-it": "^10.0.0",
"prop-types": "^15.7.2",
"push.js": "^1.0.9",
"qrcode.react": "^0.9.3",
"quill": "^1.3.6",
"react": "^16.13.1",
"react-codemirror2": "^6.0.0",
"react-dom": "^16.13.1",
"react-quill": "^1.3.3",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-sortable-hoc": "^1.9.1",
"react-virtualized": "^9.21.2",
"squire-rte": "github:ProtonMail/Squire#proton-v4",
"tabbable": "^5.1.3",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^8.0.7",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^24.0.22",
"babel-jest": "^24.5.0",
"babel-plugin-transform-require-context": "^0.1.1",
"date-fns": "^2.0.0",
"eslint": "^7.9.0",
"eslint-config-proton-lint": "github:ProtonMail/proton-lint#semver:^0.0.7",
"execa": "^1.0.0",
"husky": "^4.2.5",
"jest": "^24.9.0",
"lint-staged": "^10.2.11",
"mocha": "^5.2.0",
"prettier": "^2.0.5",
"proton-i18n": "github:ProtonMail/proton-i18n#semver:^2.1.4",
"proton-shared": "github:ProtonMail/proton-shared#master",
"react-test-renderer": "^16.8.6",
"ttag": "^1.7.0",
"typescript": "^4.0.3"
},
"peerDependencies": {
"date-fns": "^2.0.0",
"pm-srp": "github:ProtonMail/pm-srp.git#semver:^1.0.0",
"pmcrypto": "github:ProtonMail/pmcrypto.git#semver:^6.3.0",
"proton-shared": "github:ProtonMail/proton-shared.git#master",
"ttag": "^1.7.0"
}
}