-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.84 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
{
"name": "shambleshark",
"private": true,
"version": "0.15.1",
"description": "Unofficial browser extension to add functionality to the Scryfall website. This extension is not developed by the Scryfall team.",
"scripts": {
"pretty": "prettier --write .",
"lint": "eslint --ext ts .",
"posttest": "npm run pretty && npm run lint",
"test": "jest",
"build": "npm run build:chrome && npm run build:firefox",
"build:firefox": "NODE_ENV=production BROWSER=FIREFOX webpack",
"build:chrome": "NODE_ENV=production BROWSER=GOOGLE_CHROME webpack",
"start": "webpack serve"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/register": "^7.22.5",
"@types/chrome": "^0.0.237",
"@types/jest": "^29.5.2",
"@types/shortid": "0.0.29",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"babel-jest": "^29.5.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"fs-extra": "^11.1.1",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^2.8.8",
"shortid": "^2.2.16",
"string-replace-loader": "^3.1.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^5.1.3",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"bulma": "^0.9.4",
"bulma-switch": "^2.0.4",
"framebus": "^5.2.0",
"scryfall-client": "^0.23.1"
}
}