This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.21 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
{
"name": "draft-starter",
"version": "1.0.0-alpha1",
"description": "Provides basic webpack (v 4.x) scaffolding for the draft",
"main": "index.js",
"repository": "[email protected]:lemberg/draft-theme-template.git",
"author": "@lemberg/drupal-team",
"license": "MIT",
"basePath": "/themes/custom/",
"scripts": {
"dev": "NODE_ENV=development node_modules/.bin/webpack --mode=development --watch",
"build": "NODE_ENV=production node_modules/.bin/webpack --mode=production",
"explore": "NODE_ENV=production IS_EXPLORE=true node_modules/.bin/webpack --mode=production --watch",
"lint:js": "eslint \"src/**/*.js\" --ignore-pattern \"src/externals/**/*.js\"",
"lint:scss": "stylelint \"src/**/*.scss\" --ignore-pattern \"src/externals/**/*.scss\"",
"format": "prettier --write \"src/**/*.{js,scss}\""
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.2.3",
"autoprefixer": "^9.4.8",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^2.1.0",
"cssnano": "^4.1.10",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"glob": "^7.1.3",
"ignore-emit-webpack-plugin": "^1.0.2",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"prettier": "^1.16.4",
"prettier-stylelint": "^0.4.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-prettier": "^5.0.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-prettier": "^1.0.6",
"stylelint-webpack-plugin": "^0.10.5",
"webpack": "^4.28.4",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.1",
"wildcards-entry-webpack-plugin-forked": "git+ssh://[email protected]:vadym1930/wildcards-entry-webpack-plugin.git"
},
"dependencies": {
"foundation-sites": "^6.9.3"
}
}