-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "hm-gutenberg-tools",
"version": "1.7.3",
"private": true,
"scripts": {
"build": "webpack --config=.config/webpack.config.prod.js",
"start": "npm run build -- --watch -d",
"lint": "eslint ./js",
"test": "jest"
},
"jest": {
"testURL": "http://localhost",
"setupFiles": [
"./js/test-env.js"
]
},
"devDependencies": {
"@humanmade/eslint-config": "^1.1.3",
"@humanmade/webpack-helpers": "^0.11.1",
"@wordpress/data": "^2.0.0",
"babel-eslint": "^10.1.0",
"classnames": "^2.2.5",
"eslint": "^5.16.0",
"eslint-config-humanmade": "^0.6.0",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-class-property": "^1.1.0",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^29.2.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-select": "^4.3.1",
"react-test-renderer": "^16.4.2",
"sass": "^1.69.5",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"dompurify": "^3.0.6",
"lodash": "^4.17.21"
}
}