-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.05 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.05 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "phact-default-npm",
"private": true,
"dependencies": {
"@fancyapps/fancybox": ">=3.2.5",
"@flowjs/flow.js": ">=2.13.0",
"autoprefixer": "^8.6.2",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^1.0.0",
"file-loader": "^1.1.11",
"glob": "^7.1.2",
"ignore-loader": "^0.1.2",
"inputmask": "^4.0.0",
"jquery": ">=3.1.0",
"jquery-form": ">=4.2.2",
"loader-utils": "^1.1.0",
"lodash": "^4.17.10",
"mini-css-extract-plugin": "^0.4.0",
"multi-loader": "^0.1.0",
"node-sass": "^4.9.0",
"postcss-loader": "^2.1.5",
"sass-loader": "^7.0.3",
"select2": "^4.0.6-rc.1",
"slick-carousel": ">=1.8.1",
"style-loader": "^0.21.0",
"svg-sprite": "^1.4.0",
"svg-sprite-loader": "v3.9.0",
"svg-sprite-webpack-plugin": "^1.1.0",
"svg-spritemap-webpack-plugin": "^2.6.0",
"svgson": "^2.1.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"underscore": ">=1.8.3",
"webpack": "~4.12.0",
"webpack-assets-manifest": "^3.0.1",
"webpack-clean-obsolete-chunks": "^0.4.0",
"webpack-cli": "^3.0.3",
"zenscroll": "^4.0.2"
},
"browserslist": [
"last 3 versions",
"Android 4.4"
],
"scripts": {
"build": "NODE_ENV=production webpack -p --config webpack.static.config.js",
"watch": "webpack --watch --config webpack.static.config.js",
"server": "webpack-dev-server --hot --inline --open --config webpack.static.config.js",
"build_admin": "NODE_ENV=production webpack -p --config webpack.static_admin.config.js",
"watch_admin": "webpack --watch --config webpack.static_admin.config.js",
"php-server": "php -S 127.0.0.1:8000 -t ./www/",
"modules": "php ./www/index.php Base StaticModules",
"phact": "php ./www/index.php"
},
"devDependencies": {
"webpack-dev-server": "^3.1.4"
}
}