-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.3 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
{
"name": "flashcard-editor",
"version": "0.0.1",
"description": "Study flashcards in private.",
"keywords": [
"Standard Notes",
"Flashcards",
"Spaced Repetition",
"Markdown",
"KaTeX"
],
"main": "dist/dist.js",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server --devtool eval --progress --hot --content-base app",
"watch": "webpack --watch",
"server": "http-server -p 8002 --cors",
"pretty": "prettier --write 'app/**/*.{html,css,scss,js,jsx,json}'"
},
"author": "Theodore Chu",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/TheodoreChu/flashcard-editor.git"
},
"bugs": {
"url": "https://github.com/TheodoreChu/flashcard-editor/issues"
},
"homepage": "https://github.com/TheodoreChu/flashcard-editor",
"sn": {
"main": "dist/index.html"
},
"dependencies": {
"react-table": "^7.3.0",
"rehype-highlight": "^4.0.0",
"rehype-katex": "^3.0.0",
"rehype-raw": "^4.0.2",
"rehype-react": "^6.0.0",
"remark-breaks": "^1.0.5",
"remark-emoji": "^2.1.0",
"remark-external-links": "^6.1.0",
"remark-footnotes": "^1.0.0",
"remark-math": "^2.0.1",
"remark-parse": "^8.0.3",
"remark-rehype": "^7.0.0",
"remark-slug": "^6.0.0",
"remark-toc": "^7.0.0",
"styled-components": "^5.1.1",
"unified": "^9.0.0"
},
"devDependencies": {
"@babel/core": "7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"ajv": "6.12.3",
"babel-eslint": "10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-runtime": "6.x",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "~3.6.0",
"eslint": "7.5.0",
"highlight.js": "^10.4.1",
"immutability-helper": "^3.1.1",
"katex": "^0.12.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"regenerator-runtime": "^0.13.5",
"sass-loader": "^9.0.2",
"sn-components-api": "1.2.8",
"sn-editor-kit": "1.0.6",
"sn-stylekit": "2.1.0",
"style-loader": "~1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}