-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
61 lines (61 loc) · 2 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
{
"name": "duplicatefinder",
"version": "0.0.1",
"description": "This package provides a UI for the Nextcloud app duplicatefinder",
"main": "src/index.js",
"license": "GPL-3.0-only",
"private": true,
"scripts": {
"lint": "npx standard --fix js-src",
"start": "webpack serve --config webpack.dev.js --open",
"watch": "webpack --progress --config webpack.dev.js --watch",
"build": "NODE_ENV=production webpack --progress --config webpack.prod.js",
"stylelint": "stylelint src/**/*.scss src/**/*.css",
"stylelint:fix": "stylelint src/**/*.scss src/**/*.css --fix",
"test": "$(npm bin)/cypress open"
},
"repository": {
"type": "git",
"url": "https://github.com/PaulLereverend/NextcloudDuplicateFinder"
},
"keywords": [
"duplicate",
"find"
],
"author": "Christian Rose (@chrros95)",
"dependencies": {
"@emotion/react": "^11.5.0",
"facepaint": "^1.2.1",
"history": "^4.7.2",
"lodash": "^4.17.20",
"nextcloud-react": "git+ssh://[email protected]:2222/chrros95/nextcloud-react.git",
"react-redux": "^7.2.6",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"url-search-params-polyfill": "^8.1.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@emotion/babel-plugin": "^11.3.0",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@webpack-cli/serve": "^1.5.2",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^6.2.0",
"cypress": "^8.7.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.2.2",
"style-loader": "^3.2.1",
"unused-webpack-plugin": "^2.4.0",
"url-loader": "^4.1.1",
"webpack-cli": "^4.8.0",
"webpack-visualizer-plugin2": "^1.0.0"
}
}