forked from Muffo/fullyfeedly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.41 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.41 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
{
"name": "fullyfeedly",
"version": "2.0.6",
"main": "src/index.ts",
"scripts": {
"build": "npm run build:clean && webpack",
"build:ci": "npm run build:clean && webpack --env.ci",
"build:prod": "npm run build:clean && webpack --env.prod",
"build:package": "npm run build:clean && webpack --env.prod --env.package",
"build:clean": "rimraf ./extension",
"watch": "npm run build:clean && webpack --watch --bail",
"watch:notif": "webpack --watch --bail --env.notifs",
"cache:clean": "rimraf ./node_modules/.cache",
"lint": "npm-run-all --parallel lint:*",
"lint:ts": "tslint --project . --format stylish",
"lint:css": "stylelint 'src/**/*.css'",
"format": "prettier --config prettier.config.js --write '**/*.{ts,js,tsx,jsx,css}'"
},
"author": "",
"dependencies": {
"bootstrap": "^4.5.2",
"dompurify": "^2.1.1",
"ios-notification-overlay": "^1.0.2",
"jquery": "^3.6.0",
"popper.js": "^1.16.1",
"spin.js": "^4.1.0",
"tinykeys": "^1.2.0",
"webextension-polyfill": "^0.6.0"
},
"devDependencies": {
"@types/jquery": "^3.5.6",
"copy-webpack-plugin": "^5.1.2",
"css-loader": "^3.6.0",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"hard-source-webpack-plugin": "^0.13.1",
"html-webpack-plugin": "^3.2.0",
"html-webpack-tags-plugin": "^2.0.17",
"mini-css-extract-plugin": "^0.8.2",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"post-compile-webpack-plugin": "^0.1.2",
"postcss-loader": "^3.0.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"style-loader": "^1.2.1",
"stylelint": "^12.0.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-webpack-plugin": "^1.2.3",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^2.3.8",
"thread-loader": "^2.1.3",
"ts-loader": "^6.2.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.1.0",
"typescript": "^3.9.7",
"url-loader": "^3.0.0",
"webextension-polyfill-ts": "^0.11.0",
"webpack": "^4.44.2",
"webpack-build-notifier": "^2.1.0",
"webpack-cli": "^3.3.12",
"zip-webpack-plugin": "^3.0.0"
},
"license": "BSD"
}