-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 999 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 999 Bytes
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
{
"name": "chrome-extension-react-typescript",
"version": "1.1.0",
"description": "A boilerplate project to quickly build a Chrome extension using TypeScript and React",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"watch": "webpack -w --config webpack.dev.js"
},
"author": "FuJinxiang",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.60",
"@types/node": "^14.14.14",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"css-loader": "^3.4.2",
"style-loader": "^0.20.3",
"ts-loader": "^4.0.1",
"typescript": "^3.8.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"less": "^3.13.0",
"less-loader": "^7.1.0",
"livod-ui": "^0.0.47",
"lodash": "^4.17.21",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"url-loader": "^4.1.1",
"webpack-bundle-analyzer": "^4.5.0"
}
}