generated from r3bl-org/chrome-extension-typescript-react-template
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "chrome-extension-typescript-starter",
"version": "1.0.0",
"description": "chrome-extension-typescript-starter",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"test": "npx jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\"",
"update-all-deps": "npm update --save"
},
"author": "R3BL LLC",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chibat/chrome-extension-typescript-starter.git"
},
"dependencies": {
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/chrome": "^0.0.248",
"@types/jest": "^29.5.2",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"copy-webpack-plugin": "^9.1.0",
"css-loader": "^6.8.1",
"glob": "^7.2.3",
"jest": "^29.6.1",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^8.4.0",
"typescript": "^5.1.6",
"webpack": "^5.88.1",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.9.0"
}
}