mirror of
https://github.com/BradNut/awesome-uses
synced 2025-09-08 17:40:31 +00:00
From start scripts needed to be run with node 13 (esm support) Because data.js was a esm export, and needed to be compiled Moved all scripts to commontjs, and data.js file So can be imported by scripts without compiling
71 lines
1.8 KiB
JSON
71 lines
1.8 KiB
JSON
{
|
|
"name": "uses",
|
|
"description": "What do you uses",
|
|
"version": "7.7.7",
|
|
"author": "Wes Bos",
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"wesbos"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">= 12"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.1",
|
|
"@actions/exec": "^1.0.3",
|
|
"@hapi/joi": "^17.0.2",
|
|
"country-emoji": "^1.5.0",
|
|
"esm": "^3.2.25",
|
|
"gatsby": "^2.18.12",
|
|
"gatsby-image": "^2.2.34",
|
|
"gatsby-plugin-manifest": "^2.2.31",
|
|
"gatsby-plugin-offline": "^3.0.27",
|
|
"gatsby-plugin-react-helmet": "^3.1.16",
|
|
"gatsby-plugin-sharp": "^2.3.5",
|
|
"gatsby-plugin-styled-components": "^3.1.16",
|
|
"gatsby-plugin-web-font-loader": "^1.0.4",
|
|
"gatsby-source-filesystem": "^2.1.40",
|
|
"gatsby-transformer-sharp": "^2.3.7",
|
|
"normalize.css": "^8.0.1",
|
|
"prop-types": "^15.7.2",
|
|
"react": "^16.12.0",
|
|
"react-dom": "^16.12.0",
|
|
"react-helmet": "^5.2.1",
|
|
"styled-components": "5.0.0-rc.3"
|
|
},
|
|
"scripts": {
|
|
"build": "npx --node-arg '-r esm' gatsby build",
|
|
"develop": "npx --node-arg '-r esm' gatsby develop",
|
|
"start": "npm run develop",
|
|
"serve": "npx --node-arg '-r esm' gatsby serve",
|
|
"clean": "gatsby clean"
|
|
},
|
|
"devDependencies": {
|
|
"babel-eslint": "^9.0.0",
|
|
"eslint": "^5.16.0",
|
|
"eslint-config-airbnb": "^17.1.1",
|
|
"eslint-config-prettier": "^4.3.0",
|
|
"eslint-config-wesbos": "0.0.19",
|
|
"eslint-plugin-html": "^5.0.5",
|
|
"eslint-plugin-import": "^2.19.1",
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
"eslint-plugin-react": "^7.17.0",
|
|
"eslint-plugin-react-hooks": "^1.7.0",
|
|
"husky": "^4.0.10",
|
|
"lint-staged": "^9.5.0",
|
|
"prettier": "^1.19.1"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"src/data.js": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|