-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.39 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.39 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
{
"name": "react-text-annotations",
"version": "1.0.2",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"homepage": "https://github.com/LouisEugeneMSFT/react-text-annotations",
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@emotion/core": "10.1.1",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.0",
"copyfiles": "^2.4.1",
"css-loader": "^6.7.1",
"docz": "^2.4.0",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.0",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"scripts": {
"dev": "cd example && webpack serve",
"build": "npm run clean && npm run build:tsc && npm run copy-files",
"clean": "rimraf lib/",
"build:tsc": "tsc -p ./ --declaration --outDir lib/",
"copy-files": "copyfiles -u 1 src/**/*.ttf src/**/*.css lib/",
"prepublish": "npm run build",
"predeploy": "npm run docz:build",
"deploy": "gh-pages -d .docz/dist",
"docz:dev": "docz dev",
"docz:build": "docz build",
"docz:serve": "docz build && docz serve"
},
"resolutions": {
"remark-mdx": "1.6.22"
},
"dependencies": {}
}