-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.54 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
{
"name": "@slater-notes/web",
"version": "0.3.6",
"description": "🔏 A secure, end-to-end encrypted notes app.",
"homepage": "https://slaternotes.com",
"author": {
"name": "Jeff Bocala",
"url": "https://jeffbocala.com"
},
"contributors": [
{
"name": "Jeff Bocala",
"url": "https://jeffbocala.com"
}
],
"license": "MIT",
"keywords": [
"react",
"typescript",
"notes",
"end-to-end-encryption",
"encrypted-notes",
"slater-notes"
],
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "yarn lint && react-scripts test",
"lint": "eslint src",
"analyze": "source-map-explorer build/static/js/*.js",
"commit": "cz",
"bump": "standard-version",
"pub": "git push --follow-tags origin main"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"react-hooks/exhaustive-deps": "off"
}
},
"browserslist": {
"production": [
"> 5%",
"not dead"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "~4.0.0-alpha.57",
"@slater-notes/core": "slater-notes/core",
"@types/async": "^3.2.6",
"@types/is-hotkey": "~0.1.2",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/styled-components": "^5.1.9",
"async": "^3.2.0",
"axios": "~0.21.1",
"easy-peasy": "^4.0.1",
"formik": "^2.2.6",
"is-hotkey": "~0.2.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"nanoid": "^3.1.16",
"react": "^17.0.2",
"react-dom": "^17.0.1",
"react-feather": "^2.0.9",
"react-scripts": "^4.0.1",
"slate": "~0.59.0",
"slate-history": "~0.59.0",
"slate-react": "~0.59.0",
"styled-components": "^5.2.1",
"typescript": "^4.1.3",
"workerize-loader": "^1.3.0",
"wouter": "^2.7.2",
"yup": "~0.32.9"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.1",
"@types/jest": "^26.0.22",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"source-map-explorer": "~2.5.2",
"standard-version": "^9.1.1",
"web-vitals": "^1.1.0"
}
}