This repository was archived by the owner on Sep 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.86 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 4.86 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "rigami",
"version": "2.1.1",
"description": "rigami",
"main": "index.js",
"scripts": {
"lint": "eslint --fix --ext .jsx,.js,.json --ignore-path .gitignore .",
"release": "git tag -a v${npm_package_version} && git push --tags",
"build": "yarn build:clear && NODE_ENV=production webpack",
"dev": "yarn build:clear && NODE_ENV=development webpack-cli",
"build:clear": "yarn rimraf ./build && mkdirp ./build",
"release:clear": "yarn rimraf ./release && mkdirp ./release",
"build:zip": "zip -r release/rigami-${BUILD}-${npm_package_version}.zip build",
"prepare": "husky install",
"react-devtools": "react-devtools",
"bump": "yarn bump:patch",
"bump:patch": "yarn version patch && git add ./package.json",
"bump:minor": "yarn version minor && git add ./package.json",
"bump:major": "yarn version major && git add ./package.json",
"bump:premajor": "yarn version prerelease && git add ./package.json",
"dev-full": "yarn dev",
"dev-full-inst2": "BUILD_PATH=build-2 yarn dev",
"dev-full:prod-env": "PRODUCTION_ENV=true yarn dev",
"dev-wallpapers": "BUILD=wallpapers yarn dev",
"dev-wallpapers:prod-env": "BUILD=wallpapers PRODUCTION_ENV=true yarn dev",
"build-full": "BUILD=full yarn build",
"build-full:release-build": "COLLECT_LOGS=false yarn build-full && BUILD=full yarn build:zip",
"build-full:analyze": "ANALYZE=true yarn build",
"build-wallpapers": "BUILD=wallpapers yarn build",
"build-wallpapers:release-build": "COLLECT_LOGS=false yarn build-wallpapers && BUILD=wallpapers yarn build:zip",
"build-wallpapers:analyze": "ANALYZE=true yarn build-wallpapers",
"build:release": "yarn release:clear && yarn build-full:release-build && yarn build-wallpapers:release-build && yarn release"
},
"browserslist": [
"chrome > 88"
],
"repository": "https://github.com/rigami/extension-chrome",
"author": "Danilkinkin <Danilkinkin@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/rigami/readme/issues"
},
"homepage": "https://rigami.io",
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/styles": "^4.11.5",
"@sentry/browser": "^7.17.4",
"@sentry/react": "^7.17.4",
"@sentry/tracing": "^7.17.4",
"clsx": "^1.2.1",
"copy-to-clipboard": "^3.3.2",
"fast-xml-parser": "^4.0.11",
"i18next": "^22.0.4",
"i18next-http-backend": "^2.0.1",
"idb": "^7.1.0",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"mobx": "^6.6.2",
"mobx-react-lite": "^3.4.0",
"notistack": "^1.0.10",
"object-hash": "^3.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.0.0",
"react-imask": "^6.4.3",
"react-resize-detector": "^7.1.2",
"react-scrollbars-custom": "^4.1.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.0",
"@babel/plugin-syntax-throw-expressions": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/traverse": "^7.20.1",
"@babel/types": "^7.20.0",
"@sentry/webpack-plugin": "^1.20.0",
"babel-loader": "^9.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-imports": "^2.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^5.2.7",
"eslint": "^8.26.0",
"eslint-config-rigami": "https://github.com/rigami/eslint-config-rigami.git#commit=768c0a661e90c54090b06fc06a41bdcb4c567842",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-webpack": "^0.13.2",
"file-loader": "^6.2.0",
"generate-json-from-js-webpack-plugin": "^0.1.1",
"git-branch-is": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"json-loader": "^0.5.7",
"mkdirp": "^1.0.4",
"null-loader": "^4.0.1",
"pnp-webpack-plugin": "^1.7.0",
"react-devtools": "^4.26.1",
"react-svg-loader": "^3.0.3",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.10.0"
},
"sideEffects": false,
"packageManager": "yarn@3.1.0"
}