-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.47 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
{
"version": "0.0.1",
"name": "chrome-devtools-extension-playground",
"description": "Chrome Devtools Extension Playground",
"author": "Joe Seifi",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"clean": "rimraf build extension/build",
"build": "yarn clean && cross-env NODE_ENV=production webpack && cp -r build extension/ && open .",
"test": "jest"
},
"dependencies": {
"core-js": "^3.23.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@swc/core": "^1.3.18",
"@swc/jest": "^0.2.23",
"@types/chrome": "^0.0.203",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.7",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"postcss": "^8.4.14",
"postcss-loader": "^7.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"swc-loader": "^0.2.3",
"tailwindcss": "^3.1.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"engines": {
"node": "^18",
"npm": "^8"
},
"repository": {
"type": "git",
"url": "git@github.com:joeshub/chrome-devtools-extension-playground.git"
}
}