-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.15 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.15 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
{
"name": "dotnet-core-webpack",
"version": "1.0.0",
"description": "Client side of DotNetCoreWebpack project",
"main": "index.js",
"scripts": {
"build": "npm run clean && cross-env NODE_ENV=production webpack -p --hide-modules",
"clean": "rimraf wwwroot",
"dev": "webpack-dev-server --hot --inline --profile --watch --content-base wwwroot",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Sergey Suschevsky <suschevsky.sv@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jquery": "^2.0.41",
"@types/jquery-validation-unobtrusive": "^3.2.31",
"@types/jquery.validation": "^1.16.1",
"awesome-typescript-loader": "^3.1.2",
"bootstrap": "4.0.0-alpha.6",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "^2.1.0",
"jquery": "^3.2.1",
"jquery-validation": "^1.16.0",
"jquery-validation-unobtrusive": "^3.2.6",
"node-sass": "^4.5.2",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"typescript": "^2.2.2",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.3"
},
"dependencies": {
"cross-env": "^4.0.0",
"rimraf": "^2.6.1"
}
}