-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.15 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "my-webpack-cli",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "cross-env NODE_ENV=development BUILD_ENV=dev webpack-dev-server --config ./build/webpack.dev.config.js",
"build": "npm run build:dev",
"build:dev": "cross-env NODE_ENV=production BUILD_ENV=dev webpack --config ./build/webpack.prod.config.js",
"build:uat": "cross-env NODE_ENV=production BUILD_ENV=uat webpack --config ./build/webpack.prod.config.js",
"build:prod": "cross-env NODE_ENV=production BUILD_ENV=prod webpack --config ./build/webpack.prod.config.js",
"build:dll": "webpack --config ./build/webpack.dll.config.js",
"analyze": "webpack-bundle-analyzer ./stats.json",
"server": "cross-env http-server ./dist -p 8090"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@types/jquery": "^3.3.29",
"@types/lodash": "^4.14.121",
"add-asset-html-webpack-plugin": "^3.1.3",
"art-template-loader": "^1.4.3",
"autoprefixer": "^9.4.9",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.0.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.15.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"file-loader": "^3.0.1",
"fontmin": "^0.9.7-beta",
"glob": "^7.1.3",
"handlebars-loader": "^1.7.1",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"lodash": "^4.17.11",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"tslint": "^5.13.1",
"typescript": "^3.3.3333",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.1.0",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"art-template": "^4.13.2",
"babel-polyfill": "^6.26.0",
"jquery": "^3.3.1"
}
}