-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
125 lines (125 loc) · 4.09 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
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
116
117
118
119
120
121
122
123
124
125
{
"name": "refined-gitlab",
"version": "0.9.1",
"author": "Kipras Melnikovas (https://kipras.org) <[email protected]>",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development yarn run-p dev:*",
"dev:local-server": "yarn nodemon ./local-dev-server/local-dev-server.js --watch",
"dev:src": "yarn watch",
"dev:ext": "mkdir -p distribution && cp source/manifest.json ./distribution/ && web-ext run --source-dir ./distribution/ --firefox=\"$(command -v firefox || command -v firefox-developer-edition)\" --args=\"--new-tab=\"https://gitlab.com/kiprasmel/refined-gitlab-playground/-/boards\"\"",
"postinstall": "bash ./postinstall.sh",
"lint": "run-p lint:*",
"lint:js": "xo",
"lint:css": "stylelint source/**/*.css",
"lint-fix": "run-p 'lint:* -- --fix'",
"test": "run-s lint:* build",
"build": "bash ./build.sh",
"build:prod": "cross-env NEW_VERSION=1 bash ./build.sh",
"build:beta": "cross-env BETA=true NODE_ENV=production yarn build",
"clean": "rm -rf distribution web-ext-artifacts verify",
"watch": "webpack --mode=development --watch",
"new-version:git": "yarn version",
"bump-manifest": "dot-json distribution/manifest.json version $(node -p \"require('./package.json').version\")",
"new-version": "run-s new-version:git bump-manifest",
"release:cws": "yarn webstore upload --source distribution --extension-id jaafoplpaafgeeclnaakkimfgajikgba --client-id $CLIENT_ID --client-secret $CLIENT_SECRET --refresh-token $REFRESH_TOKEN --auto-publish",
"release:amo": "yarn web-ext-submit --source-dir distribution --api-key $API_KEY --api-secret $API_SECRET",
"release": "run-s build:prod release:*",
"release:beta": "run-s build:beta new-version release:*"
},
"dependencies": {
"@types/classnames": "^2.2.10",
"@types/react-dom": "^16.9.8",
"axios": "^0.20.0",
"bowser": "^2.10.0",
"classnames": "^2.2.6",
"cross-env": "^7.0.3",
"dom-chef": "^4.1.0",
"dom-loaded": "^2.0.0",
"is-string": "^1.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"select-dom": "^6.0.2",
"webext-options-sync": "^0.21.2",
"webextension-polyfill": "^0.4.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.7.0",
"@types/copy-webpack-plugin": "^6.0.0",
"@types/express": "^4.17.11",
"@types/firefox-webext-browser": "^78.0.1",
"@types/fs-extra": "^9.0.6",
"@types/react": "^16.9.44",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"babel-eslint": "^10.0.3",
"chrome-webstore-upload-cli": "^1.2.0",
"copy-webpack-plugin": "^6.0.0",
"cors": "^2.8.5",
"css-loader": "^4.2.0",
"cssnano": "^4.1.10",
"daily-version": "^0.12.0",
"dot-json": "^1.1.0",
"eslint": "5.x",
"eslint-config-airbnb": "^18.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-sarpik": "0.2.8",
"eslint-config-xo": "^0.26.0",
"eslint-plugin-flowtype": "^4.5.2",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-monorepo": "^0.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^2.3.0",
"esprima": "^4.0.1",
"express": "^4.17.1",
"file-loader": "^6.0.0",
"fs-extra": "^9.1.0",
"image-webpack-loader": "^6.0.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.16.4",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"size-plugin": "^1.2.0",
"style-loader": "^1.2.1",
"stylelint": "^10.1.0",
"stylelint-config-xo": "^0.15.0",
"terser-webpack-plugin": "^1.3.0",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"web-ext": "^4.1.0",
"web-ext-submit": "^4.1.0",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"xo": "^0.24.0"
},
"xo": {
"envs": [
"browser"
],
"ignores": [
"distribution",
"gitbeaker"
],
"globals": [
"browser"
],
"extends": [
"eslint-config-sarpik"
]
},
"eslintConfig": {
"extends": "eslint-config-sarpik"
},
"stylelint": {
"extends": "stylelint-config-xo"
}
}