forked from chibat/chrome-extension-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 843 Bytes
/
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
{
"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"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chibat/chrome-extension-typescript-starter.git"
},
"dependencies": {
"jquery": "~3.4.0",
"moment": "~2.24.0"
},
"devDependencies": {
"@types/chrome": "~0.0.83",
"@types/jquery": "~3.3.29",
"copy-webpack-plugin": "^5.0.3",
"rimraf": "^2.6.3",
"ts-loader": "~5.4.3",
"typescript": "~3.4.5",
"webpack": "~4.17.2",
"webpack-cli": "~3.1.0",
"webpack-merge": "~4.1.4"
}
}