-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 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
{
"name": "h5p-editor-topic-map",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "MIT",
"scripts": {
"watch": "webpack --watch --mode=development",
"build": "webpack --mode=production",
"lint": "eslint ./src --ext .ts,.tsx,.js,.jsx",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-icons": "^1.3.2",
"@react-hook/resize-observer": "^2.0.2",
"h5p-utils": "^4.0.0",
"lodash.intersectionby": "^4.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-use": "^17.5.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@mdx-js/react": "^3.1.0",
"@types/jest": "^29.5.14",
"@types/jquery": "^3.5.32",
"@types/lodash": "^4.17.13",
"@types/lodash.intersectionby": "^4.7.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-ndla-h5p": "github:ndlano/eslint-config-ndla-h5p",
"fast-check": "^3.23.1",
"h5p-types": "^5.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.9.2",
"sass": "^1.81.1",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"browserslist": "> 0.5%, last 2 versions, Firefox ESR, not dead"
}