-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 840 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
{
"name": "esbuild-angular",
"version": "1.0.0",
"description": "Example application in angular and build with esbuild",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "esbuild src/index.ts --bundle --outfile=dist/main.js --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcin-wosinek/esbuild-angular.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcin-wosinek/esbuild-angular/issues"
},
"homepage": "https://github.com/marcin-wosinek/esbuild-angular#readme",
"devDependencies": {
"esbuild": "^0.12.15"
},
"dependencies": {
"@angular/core": "^12.1.1",
"@angular/platform-browser": "^12.1.1",
"@angular/platform-browser-dynamic": "^12.1.1"
}
}