This repository has been archived by the owner on Feb 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.91 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
{
"name": "tizenBoilerplate",
"version": "2.0.0",
"license": "MIT",
"main": "index.js",
"scripts": {
"clear-debug": "rimraf dist/debug",
"clear-release": "rimraf dist/release",
"webpack-build-debug": "npm run clear-debug && webpack --config ./webpack.config.js",
"webpack-build-prod": "npm run clear-release && cross-env NODE_ENV=production webpack --config ./webpack.config.js",
"analyze-webpack-build-debug": "cross-env ANALYZE_BUNDLE=1 npm run webpack-build-debug",
"analyze-webpack-build-prod": "cross-env ANALYZE_BUNDLE=1 npm run webpack-build-prod",
"webpack-watch": "npm run webpack-build-debug -- --watch",
"webpack-server-debug": "webpack-dev-server --config ./webpack.config.js",
"webpack-server-prod": "cross-env NODE_ENV=production webpack-dev-server --config ./webpack.config.js",
"build-deploy": "npm run webpack-build-debug && grunt wgt-deploy",
"build-deploy-prod": "cross-env NODE_ENV=production npm run webpack-build-prod && cross-env NODE_ENV=production grunt wgt-deploy"
},
"devDependencies": {
"autoprefixer": "^7.2.5",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"copy-webpack-plugin": "^4.3.1",
"cross-env": "^5.1.3",
"css-loader": "^0.28.8",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"grunt": "^1.0.1",
"grunt-autoprefixer": "^3.0.4",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-sass": "^2.0.0",
"grunt-shell": "^2.1.0",
"grunt-webpack": "^3.0.2",
"http-server": "^0.11.1",
"load-grunt-tasks": "^3.5.2",
"postcss-loader": "^2.0.10",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.2",
"webpack-dev-server": "^2.10.1"
}
}