-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.54 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": "query-jar",
"version": "1.0.0",
"description": "QueryJar",
"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}\""
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chibat/chrome-extension-typescript-starter.git"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@fontsource/roboto-mono": "^4.5.8",
"@mui/icons-material": "^5.10.9",
"@mui/joy": "^5.0.0-alpha.56",
"@mui/material": "^5.10.13",
"@mui/styles": "^5.10.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-window": "^1.8.8",
"sass": "^1.56.1",
"sql-formatter": "^12.0.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/chrome": "0.0.158",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-window": "^1.8.5",
"@types/uuid": "^8.3.4",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.7.2",
"glob": "^7.1.6",
"jest": "^27.2.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2 ",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-jest": "^27.0.5",
"ts-loader": "^8.0.0",
"typescript": "^4.4.3 ",
"webpack": "^5.61.0",
"webpack-cli": "^4.0.0",
"webpack-merge": "^5.0.0"
}
}