-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·37 lines (37 loc) · 972 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",
"clean": "rimraf dist",
"test": "npx jest"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chibat/chrome-extension-typescript-starter.git"
},
"dependencies": {
"jquery": "^3.5.0",
"moment": "~2.24.0",
"nan": "^2.14.1"
},
"devDependencies": {
"@types/chrome": "0.0.100",
"@types/jest": "^25.1.4",
"@types/jquery": "^3.3.33",
"copy-webpack-plugin": "^5.1.1",
"jest": "^25.1.0",
"ts-jest": "^25.2.1 ",
"rimraf": "^3.0.2 ",
"ts-loader": "^6.2.1",
"typescript": "~3.8.3 ",
"webpack": "~4.42.0",
"webpack-cli": "~3.3.11",
"webpack-merge": "~4.2.2"
}
}