-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
64 lines (64 loc) · 1.92 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
{
"name": "@internetarchive/wayback-diff",
"version": "0.4.0",
"main": "build/app.js",
"dependencies": {
"d3": "7.9.0",
"d3-scale-cluster": "^2.0.1",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "18",
"react-dom": "18",
"react-router-dom": "5.3.4",
"simple-xpath-position": "^2.0.2"
},
"scripts": {
"start": "HOST=vbanos-dev.us.archive.org PORT=8093 react-scripts start",
"build": "rollup -c config/rollup.mjs",
"build:dev": "rollup -c config/rollup.mjs -w",
"test": "jest --testEnvironment=jsdom --testPathIgnorePatterns=src/components/__tests__/setup.js",
"lint": "./node_modules/.bin/eslint ./src --ext .js --ext .jsx"
},
"devDependencies": {
"@babel/core": "^7.26",
"@babel/eslint-parser": "^7.26",
"@babel/plugin-proposal-export-default-from": "^7.25",
"@babel/plugin-transform-private-property-in-object": "^7.25",
"@babel/preset-env": "^7.26",
"@babel/preset-react": "^7.25",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-url": "^8.0.1",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.3.1",
"cssnano": "^7.0.4",
"eslint": "^8.57",
"eslint-plugin-import": "^2.26",
"eslint-plugin-mocha": "^10.5",
"eslint-plugin-promise": "^6.6",
"eslint-plugin-react": "^7.35",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^26.0.0",
"postcss": "^8.5.1",
"rollup": "4.31.0",
"rollup-plugin-postcss": "^4.0.2",
"smbase64": "^1.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/internetarchive/wayback-diff"
},
"publishConfig": {
"access": "public"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}