-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1016 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
{
"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",
"start": "webpack --config webpack/webpack.dev.js --watch"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chibat/chrome-extension-typescript-starter.git"
},
"dependencies": {
"@grapecity/spread-excelio": "^12.0.10",
"@grapecity/spread-sheets": "^12.0.10",
"exceljs": "^1.9.1",
"file-saver": "^2.0.1",
"jquery": "~3.3.1",
"moment": "~2.22.2"
},
"devDependencies": {
"@types/chrome": "~0.0.72",
"@types/jquery": "~3.3.1",
"css-loader": "^2.1.1",
"json-loader": "^0.5.7",
"ts-loader": "~5.0.0",
"typescript": "~3.0.3",
"webpack": "~4.17.2",
"webpack-cli": "~3.1.0",
"webpack-merge": "~4.1.4"
}
}