-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "@harvard-lts/mirador-harvard-custom-plugin",
"license": "Apache-2.0",
"repository": "https://github.com/harvard-lts/mirador-harvard-custom-plugin.git",
"keywords": [
"react-component"
],
"version": "1.0.0",
"description": "mirador-harvard-custom-plugin React component",
"module": "dist/es/index.js",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf ./dist && rm -rf ./demo/dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"build": "run-p build:es",
"build:es": "rollup -c",
"serve": "webpack serve --mode development --open",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/cli": "^7.22.6",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-image": "^3.0.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.0.0",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"mirador": "^3.3.0",
"npm-run-all": "^4.1.5",
"rollup": "^3.26.2",
"url": "^0.11.0",
"webpack": "^5.88.1",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-node-externals": "^3.0.0",
"whatwg-fetch": "^3.6.2"
},
"dependencies": {
"jquery": "^3.7.1",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-dom": "^16.14.0"
}
}