-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.27 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
{
"name": "japanesify",
"version": "2.0.1",
"description": "Web extension starter using react and typescript",
"private": true,
"repository": "https://github.com/thorbjxrn/Japanesify",
"author": {
"name": "thorbjxrn"
},
"contributors": [
{
"name": "Hector Ortiz"
}
],
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"dev:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome webpack --watch",
"dev:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox webpack --watch",
"dev:opera": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=opera webpack --watch",
"build:chrome": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=chrome webpack",
"build:firefox": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=firefox webpack",
"build:opera": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=opera webpack",
"build": "npm run build:chrome && npm run build:firefox && npm run build:opera",
"test:e2e": "jest --config ./test/e2eTest/jest-e2e.json",
"test:watch": "jest --coverage --watch --verbose",
"test": "jest --coverage --verbose",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "ln -s .git/hooks/* git_hooks 2> /dev/null || true"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"bootstrap": "^5.2.0",
"react": "^17.0.2",
"react-bootstrap": "^2.5.0",
"react-dom": "^17.0.2",
"webextension-polyfill": "^0.9.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.14.2",
"@babel/plugin-transform-destructuring": "^7.13.17",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^27.5.0",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.5",
"@types/webextension-polyfill": "^0.9.0",
"@types/webpack": "^4.41.29",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"autoprefixer": "^10.2.5",
"babel-jest": "^28.0.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.20.0",
"eslint-config-react-app": "^7.0.1",
"filemanager-webpack-plugin": "^7.0.0-beta.0",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"html-webpack-plugin": "^4.5.2",
"jest": "^28.0.3",
"jest-environment-jsdom": "^28.0.2",
"jest-webextension-mock": "^3.7.22",
"looks-same": "^7.3.0",
"mini-css-extract-plugin": "^1.6.0",
"prettier": "^2.7.1",
"puppeteer": "^13.7.0",
"sass": "^1.54.3",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^4.2.3",
"ts-jest": "^28.0.1",
"typescript": "^4.6.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.7.0",
"wext-manifest-loader": "^2.3.0",
"wext-manifest-webpack-plugin": "^1.2.1"
}
}