-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 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
{
"name": "hm-testing-gb-blocks-demo",
"version": "0.1.0",
"main": "index.js",
"author": "Matthew Haines-Young",
"devDependencies": {
"@humanmade/webpack-helpers": "^0.5.2",
"babel-eslint": "^10.0.3",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-humanmade": "^0.7.0",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"jest": "^24.9.0",
"node-sass": "^4.13.0",
"react-test-renderer": "^16.12.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"scripts": {
"build": "webpack --config=.config/webpack.config.prod.js",
"start": "webpack-dev-server --config .config/webpack.config.dev.js",
"lint:js": "eslint js/src",
"lint:js:fix": "npm run lint:js -- --fix",
"test": "npm run test:js",
"test:js": "jest ./assets/js --silent",
"test:js:start": "jest --watch --verbose ./assets/js"
}
}