forked from chibat/chrome-extension-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·37 lines (37 loc) · 999 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
33
34
35
36
37
{
"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"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chibat/chrome-extension-typescript-starter.git"
},
"dependencies": {
"jquery": "~3.3.1",
"moment": "~2.22.2"
},
"devDependencies": {
"@types/chrome": "~0.0.72",
"@types/jquery": "~3.3.1",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"gulp": "^3.9.1",
"gulp-chrome-manifest": "0.0.13",
"gulp-if": "^2.0.2",
"gulp-load-plugins": "^1.5.0",
"gulp-run-command": "0.0.9",
"gulp-zip": "^4.2.0",
"ts-loader": "~5.0.0",
"typescript": "~3.0.3",
"webpack": "~4.17.2",
"webpack-cli": "~3.1.0",
"webpack-merge": "~4.1.4"
}
}