-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
87 lines (87 loc) · 3.85 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "novicell-frontend",
"description": "Novicells Default Frontend Package - used in all Novicell related projects as a base front-end framework.",
"version": "5.0.0",
"homepage": "http://www.novicell.dk",
"author": "Novicell",
"repository": {
"type": "git",
"url": "https://github.com/Novicell/novicell-frontend.git"
},
"engines": {
"node": "<=10.0.0"
},
"config": {
"DIST": "dist",
"CSS_MODULES": "src/modules/*.css"
},
"scripts": {
"test": "echo Working...",
"fractal": "fractal start --sync",
"fractal:build": "fractal build",
"fonts": "cross-env-shell copyfiles -u 2 \"assets/fonts/**/*\" $npm_package_config_DIST/fonts/ -V",
"images": "node config/images/imagemin.js",
"sprites": "cross-env-shell node config/sprites/sprite.js -i 'assets/icons/**/**/*.svg' -o $npm_package_config_DIST/icons/icons.svg",
"styles": "cross-env-shell postcss $npm_package_config_CSS_MODULES --dir $npm_package_config_DIST/css --ext min.css --config config/styles/postcss.config.js",
"webpack": "webpack --config config/scripts/webpack.config.js",
"watch:styles": "cross-env-shell postcss $npm_package_config_CSS_MODULES --dir $npm_package_config_DIST/css --ext min.css --config config/styles/postcss.config.js --watch --verbose",
"watch:webpack": "webpack --config config/scripts/webpack.config.js --watch",
"build:dev": "cross-env NODE_ENV=development npm-run-all -l sprites images styles fonts test webpack",
"build:prod": "cross-env NODE_ENV=production npm-run-all -l sprites images styles fonts test webpack",
"dev": "cross-env NODE_ENV=development npm-run-all -p -r watch:webpack watch:styles fractal",
"start": "npm run dev",
"prod": "cross-env NODE_ENV=production npm-run-all -p -r watch:webpack --mode=production watch:styles fractal",
"fix": "eslint --fix src/**/*.js --config config/scripts/.eslintrc.js",
"fix:styles": "stylelint src/**/*.css --fix --config config/styles/stylelint.config.js",
"buildDrupal": "node config/drupal/babel-minify.js",
"generateFavicon": "cross-env-shell real-favicon generate config/favicon/faviconDescription.json $npm_package_config_DIST/favicons/faviconData.json $npm_package_config_DIST/favicons"
},
"fractal": {
"main": "config/fractal.js"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.4.0",
"@babel/preset-env": "7.4.2",
"@frctl/fractal": "^1.3.0",
"babel-loader": "8.0.5",
"cli-real-favicon": "0.0.8",
"copyfiles": "^2.3.0",
"cross-env": "5.2.0",
"css-loader": "2.1.1",
"cssnano": "4.1.10",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-loader": "2.1.2",
"eslint-plugin-import": "^2.16.0",
"glob": "7.1.3",
"glob-watcher": "5.0.3",
"handlebars-layouts": "3.1.4",
"imagemin": "6.1.0",
"mini-css-extract-plugin": "0.5.0",
"npm-run-all": "4.1.5",
"postcss": "7.0.14",
"postcss-cli": "^7.1.1",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"postcss-nested": "4.1.2",
"postcss-preset-env": "6.6.0",
"postcss-reporter": "6.0.1",
"style-loader": "0.23.1",
"stylelint": "^13.6.1",
"stylelint-config-standard": "18.2.0",
"svg-sprite": "1.5.0",
"terser-webpack-plugin": "^4.1.0",
"vue-loader": "15.7.0",
"vue-template-compiler": "2.6.10",
"webpack": "4.29.6",
"webpack-bundle-analyzer": "3.3.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {},
"bin": {
"createComponent": "./config/createComponent/index.js"
}
}