-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
121 lines (121 loc) · 3.42 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
121
{
"name": "append-editor",
"version": "1.2.6",
"description": "Append to your notes",
"keywords": [
"Append Editor",
"Standard Notes",
"Markdown",
"KaTeX"
],
"private": true,
"author": "Theodore Chu",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/TheodoreChu/append-editor.git"
},
"bugs": {
"url": "https://github.com/TheodoreChu/append-editor/issues"
},
"sn": {
"main": "build/index.html"
},
"homepage": ".",
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "PORT=3001 react-scripts start",
"build": "react-scripts build",
"clean-deploy-cache": "rm -rf node_modules/.cache/gh-pages",
"predeploy": "yarn run pretty && cp README.md public/README.txt && cp LICENSE public/LICENSE.txt && yarn run build && yarn clean-deploy-cache",
"deploy-build": "yarn run predeploy && gh-pages -b build -d build",
"deploy-dev": "yarn run predeploy && gh-pages -b dev -d build",
"deploy-stable": "yarn run predeploy && gh-pages -b gh-pages -d build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"serve": "serve -s -p 3000 build",
"server-public": "http-server -p 3000 --cors",
"server-root": "http-server ./ -p 3000 --cors",
"server": "http-server ./build -p 3000 --cors",
"pretty": "prettier --write 'src/**/*.{html,css,scss,js,jsx,ts,tsx,json}' README.md public/*.{html,json}"
},
"dependencies": {
"@testing-library/dom": "^7.29.4",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.6.3",
"@types/codemirror": "^0.0.108",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/unist": "^2.0.3",
"codemirror": "^5.59.2",
"filesafe-embed": "^1.0.10",
"filesafe-js": "^1.0.4",
"gh-pages": "^3.1.0",
"husky": "^4.3.8",
"katex": "^0.12.0",
"lint-staged": "^10.5.4",
"monaco-editor": "^0.22.3",
"node-sass": "4.14.1",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.2",
"rehype-highlight": "^4.0.0",
"rehype-katex": "^4.0.0",
"rehype-raw": "^5.0.0",
"rehype-react": "^6.2.0",
"remark-breaks": "^2.0.1",
"remark-external-links": "^8.0.0",
"remark-footnotes": "^3.0.0",
"remark-gemoji": "^6.0.0",
"remark-gfm": "^1.0.0",
"remark-math": "^4.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.0.0",
"remark-slug": "^6.0.0",
"remark-toc": "^7.1.0",
"rich-markdown-editor": "^11.1.6",
"sn-editor-kit": "1.0.9",
"sn-stylekit": "2.1.1",
"source-map-explorer": "^2.5.2",
"styled-components": "^5.2.1",
"typescript": "^4.1.3",
"unified": "^9.2.0",
"web-vitals": "^1.1.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"README.md": [
"prettier --write"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}