-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.47 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
{
"name": "@dwmaj/workflow",
"version": "1.0.0",
"description": "",
"main": "src/index.html",
"scripts": {
"build": "npm run clean && npm run lint && npm run production",
"clean": "rimraf dist",
"dev": "NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"lint": "stylelint 'src/styles/**/*.scss' --config .stylelintrc.json && eslint src/scripts",
"production": "NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"start": "npm run watch",
"watch": "NODE_ENV=development webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"keywords": [],
"author": "",
"license": "SEE LICENSE IN UNLICENSE",
"devDependencies": {
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.26.0",
"browser-sync-webpack-plugin": "^2.0.1",
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"imagemin": "^6.0.0",
"laravel-mix": "^2.1.14",
"rimraf": "^2.6.2",
"stylelint": "^9.6.0",
"stylelint-config-standard": "^18.2.0"
},
"dependencies": {
"pinch-zoom-js": "^2.3.0"
}
}