-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "@humanmade/publication-checklist",
"version": "1.0.0",
"description": "A simple, yet flexible publication checklist for WordPress.",
"author": "Human Made",
"license": "GPL-2.0-or-later",
"private": true,
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@wordpress/scripts": "^3.2.1",
"classnames": "^2.2.6",
"lodash": "^4.17.11",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"rc-progress": "^2.3.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rememo": "^3.0.0"
},
"devDependencies": {
"@wordpress/eslint-plugin": "^2.2.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsdoc": "^8.0.1"
},
"scripts": {
"build": "wp-scripts build && node-sass -o build src",
"lint:js": "wp-scripts lint-js src",
"lint:pkg-json": "wp-scripts lint-pkg-json package.json",
"lint:style": "wp-scripts lint-style '**/*.scss'",
"start": "wp-scripts start",
"test:unit": "wp-scripts test-unit-js"
}
}