-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2 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
64
{
"name": "symbio-devstack",
"version": "1.5.0",
"author": "SYMBIO Digital",
"description": "SYMBIO static devstack",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/SYMBIO/static-devstack.git"
},
"scripts": {
"dev": "NODE_ENV=development concurrently \"npm run webpack\" \"npm run gulp\"",
"build": "NODE_ENV=production concurrently \"npm run webpack-build\" \"npm run gulp-build\"",
"webpack": "webpack-dev-server --port 8000 --mode development ./frontend/js/index.js --output ./web/js/index.js",
"webpack-build": "webpack --mode production ./frontend/js/index.js --output ./web/js/index.js",
"gulp": "gulp",
"gulp-build": "gulp build"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"concurrently": "^3.5.1",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-cssnano": "^2.1.2",
"gulp-eslint": "^4.0.2",
"gulp-html-prettify": "0.0.1",
"gulp-imagemin": "^4.1.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.0",
"gulp-postcss": "^7.0.1",
"gulp-pug": "^3.3.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-svg-symbols": "^3.1.0",
"gulp-webp": "^3.0.0",
"object-fit-images": "^3.2.3",
"postcss-assets": "^5.0.0",
"postcss-calc": "^6.0.1",
"postcss-color-function": "^4.0.1",
"postcss-cssnext": "^3.1.0",
"postcss-discard-empty": "^2.1.0",
"postcss-easy-import": "^3.0.0",
"postcss-hexrgba": "^1.0.0",
"postcss-object-fit-images": "^1.1.2",
"precss": "^3.1.2",
"run-sequence": "^2.2.1",
"sugarss": "^1.0.1",
"svg4everybody": "^2.1.9",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13"
},
"devDependencies": {
"browser-sync": "^2.23.6",
"pug": "^2.0.3",
"webpack-dev-server": "^3.1.1"
}
}