-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·72 lines (72 loc) · 2.11 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
{
"name": "@yournamespace/wp-lando-plugin-scaffold",
"version": "0.1.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/yournamespace/wp-lando-plugin-scaffold.git"
},
"author": "John Watkins, Colby Communications",
"license": "ISC",
"bugs": {
"url": "https://github.com/yournamespace/wp-lando-plugin-scaffold/issues"
},
"homepage": "https://github.com/yournamespace/wp-lando-plugin-scaffold#readme",
"scripts": {
"start": "rm -rf assets/dist && webpack -w --mode=development",
"build": "rm -rf assets/dist && webpack --mode=production",
"lint": "eslint assets/src/",
"stylelint": "stylelint assets/src/**/*.scss",
"jest": "jest",
"test": "npm run lint && npm run stylelint && npm run jest && composer run lint",
"test-local": "npm run lint && npm run stylelint && npm run jest && composer run lint && composer run test"
},
"husky": {
"hooks": {
"pre-commit": "npm run test-local"
}
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@wordpress/api-fetch": "^3.1.2",
"@wordpress/babel-preset-default": "^4.1.0",
"@wordpress/browserslist-config": "^2.3.0",
"@wordpress/components": "^7.3.1",
"@wordpress/compose": "^3.2.0",
"@wordpress/data": "^4.4.0",
"@wordpress/dom-ready": "^2.2.0",
"@wordpress/element": "^2.3.0",
"@wordpress/eslint-plugin": "^2.1.0",
"@wordpress/html-entities": "^2.2.0",
"@wordpress/i18n": "^3.3.0",
"@wordpress/jest-preset-default": "^4.0.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-plugin-jest": "^22.4.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"husky": "^1.3.1",
"jest": "^24.7.1",
"node-sass": "^4.11.0",
"prettier": "^1.17.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^10.0.1",
"stylelint-config-wordpress": "^14.0.0",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"rememo": "^3.0.0"
},
"browserslist": {
"extends": "@wordpress/browserslist-config"
},
"stylelint": {
"extends": [
"stylelint-config-wordpress/scss"
]
}
}