forked from dotnet/aspnetcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.66 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.66 KB
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
{
"name": "microsoft.aspnetcore.components.web.js",
"private": true,
"version": "0.0.1",
"description": "",
"main": "index.js",
"sideEffects": [
"GlobalExports.*",
"MonoPlatform.*"
],
"scripts": {
"preclean": "yarn install --mutex network --frozen-lockfile || yarn install --mutex network --frozen-lockfile",
"clean": "node node_modules/rimraf/bin.js ./dist/Debug ./dist/Release",
"prebuild": "yarn run clean && yarn install --mutex network --frozen-lockfile || yarn install --mutex network --frozen-lockfile",
"lint": "eslint -c ./src/.eslintrc.js --ext .ts ./src",
"build": "yarn run build:debug && yarn run build:production",
"build:debug": "cd src && node ../node_modules/webpack-cli/bin/cli.js --mode development --config ./webpack.config.js",
"build:production": "cd src && node ../node_modules/webpack-cli/bin/cli.js --mode production --config ./webpack.config.js"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@microsoft/dotnet-js-interop": "link:../../JSInterop/Microsoft.JSInterop.JS/src",
"@microsoft/signalr": "link:../../SignalR/clients/ts/signalr",
"@microsoft/signalr-protocol-msgpack": "link:../../SignalR/clients/ts/signalr-protocol-msgpack",
"@types/dotnet": "./@types/dotnet",
"@types/jsdom": "^16.2.14",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-plugin-header": "^3.1.1",
"inspectpack": "^4.7.1",
"rimraf": "^3.0.2",
"terser": "^5.14.2",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2"
}
}