-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "icloud-passwords-firefox",
"version": "1.2.2",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/au2001/icloud-passwords-firefox.git"
},
"scripts": {
"start": "concurrently \"npm run build:watch\" \"npm run preview\"",
"preview": "web-ext run",
"build:watch": "webpack -w",
"build": "rm -rf dist && webpack --mode=production --devtool=false && web-ext build",
"lint": "web-ext lint && eslint ./src",
"format": "prettier --write ."
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.17.0"
},
"devDependencies": {
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.14",
"@types/webextension-polyfill": "^0.10.5",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.52.0",
"html-webpack-plugin": "^5.5.3",
"prettier": "^3.0.3",
"sass": "^1.69.4",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"web-ext": "^7.9.0",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"webExt": {
"sourceDir": "./dist",
"build": {
"overwriteDest": true
}
}
}