-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.13 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"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",
"devtools": "redux-devtools --hostname=localhost --port=18000"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chibat/chrome-extension-typescript-starter.git"
},
"dependencies": {
"@blueprintjs/core": "^3.19.1",
"@blueprintjs/select": "^3.11.1",
"@phosphor/algorithm": "^1.2.0",
"@phosphor/application": "^1.7.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/datagrid": "^0.1.10",
"@phosphor/default-theme": "^0.1.4",
"@phosphor/disposable": "^1.3.1",
"@phosphor/properties": "^1.1.3",
"@phosphor/signaling": "^1.3.1",
"@phosphor/widgets": "^1.9.3",
"ajv": "^6.10.2",
"axios": "^0.19.0",
"canvas-datagrid": "^0.22.12",
"chrome-net": "^3.3.3",
"jquery": "^3.4.1",
"jquery-ui-dist": "^1.12.1",
"json-loader": "^0.5.7",
"lodash": "^4.17.19",
"moment": "~2.24.0",
"monaco-editor": "^0.17.1",
"react": "~16.8.4",
"react-dom": "^16.8.6",
"slickgrid": "^2.4.14",
"typestyle": "^2.0.4",
"url-loader": "^2.2.0"
},
"devDependencies": {
"@types/chrome": "0.0.86",
"@types/react": "~16.8.18",
"@types/react-dom": "^16.8.4",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.1.0",
"file-loader": "^4.1.0",
"monaco-editor-webpack-plugin": "^1.7.0",
"node-sass": "^4.13.0",
"prettier": "^1.18.2",
"raw-loader": "^3.1.0",
"redux-devtools-cli": "^0.0.1-1",
"remote-redux-devtools": "^0.5.16",
"rimraf": "^2.6.3",
"sass-loader": "^8.0.0",
"style-loader": "^0.23.1",
"svg-url-loader": "~2.3.2",
"ts-lint": "^4.5.1",
"ts-loader": "^5.4.5",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "~3.4.5",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-merge": "~4.2.1",
"worker-loader": "^2.0.0"
}
}