-
-
Notifications
You must be signed in to change notification settings - Fork 209
/
package.json
127 lines (127 loc) · 3.73 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
126
127
{
"name": "stylebot",
"version": "3.1.4",
"description": "Change the appearance of the web instantly",
"homepage": "https://github.com/ankit/stylebot#readme",
"bugs": {
"url": "https://github.com/ankit/stylebot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ankit/stylebot.git"
},
"license": "MIT",
"author": "Ankit Ahuja",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --hide-modules",
"build:firefox": "cross-env NODE_ENV=production BROWSER=firefox webpack --hide-modules",
"watch": "cross-env NODE_ENV=development webpack --hide-modules --watch",
"watch:firefox": "cross-env NODE_ENV=development BROWSER=firefox webpack --hide-modules --watch",
"start:firefox": "web-ext run --source-dir ./firefox-dist/",
"lint": "eslint --ext .js,.ts,.vue src",
"lint:fix": "yarn lint --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"postinstall": "patch-package"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"json",
"vue"
],
"setupFiles": [
"./setupJest.js"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.ts$": "ts-jest",
"^.+\\.js$": "babel-jest"
},
"moduleNameMapper": {
"^@stylebot/(.*)$": "<rootDir>/src/$1/index",
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"lint-staged": {
"src/**/*.{js,ts,vue}": [
"yarn lint:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"@types/chrome": "^0.0.193",
"@types/dedent": "^0.7.0",
"@types/jest": "^26.0.4",
"@types/lodash": "^4.14.157",
"@types/tinycolor2": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.0.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.1.0",
"bootstrap": "^4.5.0",
"bootstrap-vue": "^2.15.0",
"copy-webpack-plugin": "^6.0.1",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"cssnano": "^4.1.10",
"date-fns": "^2.16.1",
"dedent": "^0.7.0",
"deepmerge": "^4.2.2",
"ejs": "^3.1.3",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2",
"hotkeys-js": "^3.8.1",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"jest-environment-jsdom": "^26.1.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^10.5.4",
"lodash": "^4.17.19",
"mini-css-extract-plugin": "^0.9.0",
"monaco-editor": "^0.20.0",
"patch-package": "^6.2.2",
"postcss": "^7.0.32",
"postcss-loader": "^3.0.0",
"postcss-rem-to-pixel": "^4.1.2",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0",
"progress-bar-webpack-plugin": "^2.1.0",
"readability": "mozilla/readability#master",
"requirejs": "^2.3.6",
"sass": "^1.26.9",
"sass-loader": "^8.0.2",
"terser-webpack-plugin": "^3.0.7",
"tinycolor2": "^1.4.1",
"ts-jest": "^26.1.1",
"ts-loader": "^8.0.1",
"typescript": "^3.9.7",
"vue": "^2.6.11",
"vue-draggable-resizable": "^2.3.0",
"vue-eslint-parser": "^7.1.0",
"vue-jest": "^3.0.6",
"vue-loader": "^15.9.2",
"vue-swatches": "^2.1.1",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.5.1",
"web-ext": "^5.4.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}