-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.65 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
{
"name": "@notelix/web-marker",
"version": "2.0.6",
"description": "a web page highlighter",
"main": "./build/web-marker.js",
"types": "./build/libroot.d.ts",
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"build-lib": "BUILD_TARGET=lib react-app-rewired build",
"prepublish": "NO_BUNDLE_ANALYSER=true npm run build-lib; tsc -p tsconfig.gen-dts.json",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject"
},
"dependencies": {
"uuid": "^8.3.2"
},
"homepage": "https://github.com/notelix/web-marker",
"repository": {
"type": "git",
"url": "https://github.com/notelix/web-marker"
},
"devDependencies": {
"@material-ui/core": "^4.11.0",
"@types/react-dom": "^17.0.9",
"@types/uuid": "^8.3.1",
"bulma": "^0.9.1",
"copy-webpack-plugin": "6",
"lodash-es": "^4.17.15",
"markdown-to-jsx": "^7.0.1",
"raw-loader": "^4.0.1",
"react": "^17.0.0",
"react-app-rewired": "^2.1.6",
"react-dom": "^17.0.0",
"react-katex": "^2.0.2",
"react-scripts": "^3.4.1",
"react-syntax-highlighter": "^15.3.0",
"sass": "^1.38.0",
"typescript": "^4.0.5",
"webpack-bundle-analyzer": "^4.4.2",
"yaml": "^1.10.0"
},
"keywords": [
"web",
"marker",
"text",
"highlight",
"annotation",
"selection",
"range"
],
"author": "Ke Wang <[email protected]>",
"license": "MIT",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}