-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.07 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
{
"name": "fsve-curator",
"version": "0.0.0",
"description": "Add fs-curator features to fs-viewer",
"repository": {
"type": "git",
"url": "git+https://github.com/unreadablewxy/fsve-curator.git"
},
"author": {
"name": "UnreadableCode",
"email": "nobody@unreadableco.de",
"url": "https://github.com/unreadable-code"
},
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/unreadablewxy/fsve-curator/issues"
},
"homepage": "https://github.com/unreadablewxy/fsve-curator#readme",
"main": "dist/index.js",
"scripts": {
"test-types": "tsc",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch",
"clean": "rm -rf build",
"link": "mkdir -p ~/.fs-viewer-extensions/fsve-curator && ln -s $PWD/{build/index.*,package.json} ~/.fs-viewer-extensions/fsve-curator"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/react": "^17.0.18",
"@types/react-dom": "^17.0.9",
"@types/react-router": "^5.1.16",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-loader": "^4.0.2",
"eslint-webpack-plugin": "^3.0.1",
"html-webpack-plugin": "^5.3.2",
"license-webpack-plugin": "^2.3.20",
"mini-css-extract-plugin": "^2.2.0",
"prop-types": "^15.7.2",
"sass": "^1.38.0",
"sass-loader": "^12.1.0",
"terser-webpack-plugin": "^5.1.4",
"typescript": "^4.3.5",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"webpack-config-builder": "github:/unreadable-code/webpack-config-builder",
"webpack-license-plugin": "^4.2.0"
},
"dependencies": {
"@mdi/js": "^5.9.55",
"@mdi/react": "^1.5.0"
}
}