2021-01-27 11:53:13 +03:00
|
|
|
{
|
|
|
|
"name": "web-dev-media",
|
|
|
|
"version": "1.0.0-alpha",
|
|
|
|
"description": "A sample video PWA built for web.dev/media",
|
|
|
|
"main": "src/index.js",
|
|
|
|
"author": "Google",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2021-02-05 18:30:23 +03:00
|
|
|
"lint": "eslint src/",
|
2021-01-27 11:53:13 +03:00
|
|
|
"lint:fix": "eslint . --fix",
|
2021-02-09 08:54:36 +03:00
|
|
|
"start": "firebase serve --only hosting",
|
2021-03-10 07:55:38 +03:00
|
|
|
"build": "rollup -c",
|
2021-02-05 18:30:23 +03:00
|
|
|
"watch": "rollup -c -w"
|
|
|
|
},
|
2021-01-27 11:53:13 +03:00
|
|
|
"devDependencies": {
|
2021-02-09 03:32:43 +03:00
|
|
|
"@babel/eslint-parser": "^7.12.13",
|
2021-02-05 18:30:23 +03:00
|
|
|
"@babel/eslint-plugin": "^7.12.13",
|
|
|
|
"@babel/preset-env": "^7.12.13",
|
2021-01-27 11:53:13 +03:00
|
|
|
"eslint": "^7.18.0",
|
|
|
|
"eslint-config-airbnb-base": "^14.2.1",
|
2021-02-11 19:38:16 +03:00
|
|
|
"eslint-plugin-compat": "^3.9.0",
|
2021-01-27 11:53:13 +03:00
|
|
|
"eslint-plugin-import": "^2.22.1",
|
|
|
|
"eslint-plugin-jest": "^24.1.3",
|
|
|
|
"eslint-plugin-jsdoc": "^30.7.13",
|
|
|
|
"husky": "^4.3.8",
|
2021-02-05 18:30:23 +03:00
|
|
|
"jest": "^26.6.3",
|
2021-03-10 07:55:38 +03:00
|
|
|
"rollup": "^2.38.5",
|
|
|
|
"rollup-plugin-execute": "^1.1.1"
|
2021-01-27 11:53:13 +03:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "npm run lint"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|