-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.01 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.01 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "neuroloop_dashboard",
"version": "1.0.1",
"description": " matrix-ui-plugin-boilerplate for the 2.4 tree",
"repository": {
"url": "https://github.com/MatrixRequirements/neuroloop_dashboard"
},
"scripts": {
"pretty": "prettier --write src/",
"clean": "rm -rf dist",
"check": "tsc --noEmit",
"check:metadata": "ajv --spec=draft2020 validate -s resources/plugin-metadata.json -d resources/matrix.json --strict=false",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"package": "zip -j ./dist/${npm_package_name}.zip ./dist/*.js* && zip -j -u ./dist/${npm_package_name}.zip ./resources/matrix.json",
"proxy": "export $(grep -v '^#' Proxy.env | xargs) && ./proxy.sh",
"eslint": "eslint src",
"eslint:fix": "eslint src --fix"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.18.1",
"@types/bootstrap": "3.3.32",
"@types/bootstrap-datepicker": "0.0.15",
"@types/d3": "^7.4.0",
"@types/jest": "^29.5.3",
"@types/jquery": "^3.5.5",
"@types/jqueryui": "1.11.31",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"ajv": "^6.12.6",
"ajv-cli": "^5.0.0",
"css-loader": "^6.9.1",
"dotenv": "^16.4.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.13",
"prettier": "^3.0.1",
"style-loader": "^3.3.4",
"ts-loader": "^9.4.2",
"typescript": "^5.3.3",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"matrix-requirements-sdk": "^2.4.2-rc.0",
"matrixrequirements-type-declarations": "^2.4.0-rc.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}