-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "greasemonkey-webpack-typescript-boilerplate",
"version": "1.0.4",
"description": "A Greasemonkey/Tampermonkey Webpack + TypeScript boilerplate",
"main": "index.js",
"scripts": {
"build": "npx webpack",
"start": "npx webpack serve --progress --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tarkant/greasemonkey-webpack-typescript-boilerplate.git"
},
"keywords": [
"Boilerplate",
"Greasemonkey",
"Webpack",
"Tampermonkey",
"TypeScript"
],
"author": "Tarek Jellali",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/tarkant/greasemonkey-webpack-typescript-boilerplate/issues"
},
"homepage": "https://github.com/tarkant/greasemonkey-webpack-typescript-boilerplate#readme",
"devDependencies": {
"@types/node": "^14.14.35",
"concat-files": "^0.1.1",
"css-loader": "^5.1.3",
"html-loader": "^2.1.2",
"node-sass": "^5.0.0",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.18",
"typescript": "^4.2.3",
"webpack": "^5.26.3",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-dev-server-inject-scripts": "^0.2.0"
}
}