-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.43 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
{
"name": "geocities-blocks",
"title": "GeoCities Blocks",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com:melchoyce/geocities-blocks.git"
},
"license": "GPL-2.0+",
"engines": {
"node": "10.14.2",
"npm": "6.5.0"
},
"scripts": {
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",
"start": "cross-env BABEL_ENV=default webpack --watch",
"ci": "npm run lint",
"lint": "concurrently \"npm run lint-js\" \"npm run lint-css\" \"npm run lint-php\"",
"lint-js": "eslint . --ext=js,jsx",
"lint-js:fix": "eslint . --ext=js,jsx --fix",
"lint-css": "stylelint '**/*.scss'",
"lint-css:fix": "stylelint '**/*.scss' --fix",
"lint-php": "composer run lint"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@wordpress/babel-plugin-import-jsx-pragma": "^1.1.2",
"@wordpress/babel-preset-default": "^3.0.1",
"@wordpress/eslint-plugin": "^1.0.0",
"autoprefixer": "^9.3.1",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"concurrently": "^4.1.0",
"cross-env": "5.2.0",
"css-loader": "^1.0.1",
"eslint": "^5.9.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.10.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.5.0",
"stylelint-config-wordpress": "^13.1.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
}
}