Add extractor and builder
Tested and working
This commit is contained in:
67
package.json
67
package.json
@ -4,10 +4,12 @@
|
||||
"description": "A curated collection of useful CSS snippets.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"dev": "nodemon -e md,js ./scripts/build.js & parcel index.html",
|
||||
"build": "node ./scripts/build.js && npm run prettier && npm run parcel",
|
||||
"parcel": "npx rimraf docs && parcel build index.html -d docs/ --public-url ./",
|
||||
"prettier": "prettier --write \"**/*.{js,json,md,css,scss}\""
|
||||
"builder": "node ./scripts/build.js",
|
||||
"webber": "gatsby build",
|
||||
"webber:dev": "gatsby develop",
|
||||
"webber:serve": "gatsby serve",
|
||||
"extractor": "node ./scripts/extract.js",
|
||||
"linter": "prettier --write \"**/*.{js,json,md,css,scss}\""
|
||||
},
|
||||
"author": "atomiks",
|
||||
"license": "MIT",
|
||||
@ -17,22 +19,47 @@
|
||||
"singleQuote": true
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-cli": "^6.26.0",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-preset-env": "^1.6.1",
|
||||
"babel-preset-stage-2": "^6.24.1",
|
||||
"caniuse-db": "^1.0.30000813",
|
||||
"date-fns": "^1.29.0",
|
||||
"jsdom": "^11.6.2",
|
||||
"marked": "^0.3.16",
|
||||
"node-sass": "^4.9.3",
|
||||
"nodemon": "^1.18.4",
|
||||
"normalize.css": "^8.0.0",
|
||||
"parcel-bundler": "^1.11.0",
|
||||
"prettier": "^1.14.3",
|
||||
"pretty": "^2.0.0",
|
||||
"prismjs": "^1.11.0",
|
||||
"rimraf": "^2.6.2"
|
||||
"@babel/plugin-proposal-class-properties": "^7.5.0",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
||||
"@babel/preset-env": "^7.5.4",
|
||||
"@babel/preset-react": "^7.0.0",
|
||||
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
|
||||
"caniuse-db": "^1.0.30000989",
|
||||
"front-matter": "^3.0.2",
|
||||
"fs-extra": "^8.1.0",
|
||||
"gatsby": "^2.12.0",
|
||||
"gatsby-image": "^2.2.6",
|
||||
"gatsby-plugin-google-analytics": "^2.1.6",
|
||||
"gatsby-plugin-manifest": "^2.2.3",
|
||||
"gatsby-plugin-netlify": "^2.1.3",
|
||||
"gatsby-plugin-offline": "^2.2.4",
|
||||
"gatsby-plugin-page-creator": "^2.1.5",
|
||||
"gatsby-plugin-react-helmet": "^3.1.2",
|
||||
"gatsby-plugin-sass": "^2.1.3",
|
||||
"gatsby-plugin-sharp": "^2.2.7",
|
||||
"gatsby-plugin-sitemap": "^2.2.8",
|
||||
"gatsby-plugin-transition-link": "^1.12.4",
|
||||
"gatsby-remark-copy-linked-files": "^2.1.3",
|
||||
"gatsby-remark-images": "^3.1.6",
|
||||
"gatsby-remark-prismjs": "^3.3.3",
|
||||
"gatsby-source-filesystem": "^2.1.5",
|
||||
"gatsby-transformer-json": "^2.2.2",
|
||||
"gatsby-transformer-remark": "^2.6.6",
|
||||
"gatsby-transformer-sharp": "^2.2.3",
|
||||
"gsap": "^2.1.3",
|
||||
"kleur": "^3.0.3",
|
||||
"markdown-builder": "^0.9.0",
|
||||
"node-sass": "^4.12.0",
|
||||
"prettier": "^1.18.2",
|
||||
"prismjs": "^1.16.0",
|
||||
"prop-types": "^15.7.2",
|
||||
"react": "^16.8.6",
|
||||
"react-copy-to-clipboard": "^5.0.1",
|
||||
"react-css-transition-replace": "^3.0.3",
|
||||
"react-dom": "^16.8.6",
|
||||
"react-helmet": "^5.2.1",
|
||||
"react-redux": "^7.1.0",
|
||||
"redux": "^4.0.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"feather-icons": "^4.7.0",
|
||||
|
||||
Reference in New Issue
Block a user