selfdefined/package.json

54 lines
1.6 KiB
JSON
Raw Normal View History

2019-11-11 23:53:23 +01:00
{
"name": "selfdefined",
"private": true,
"version": "0.1.0",
"description": "A modern dictionary about us.",
"main": "index.js",
"scripts": {
2020-02-06 15:02:09 -08:00
"build:css": "parcel build assets/css/base.scss --out-dir dist/assets/css/",
"build:site": "eleventy",
"build": "npm run build:css && npm run build:site",
"create-definitions": "bin/create-definitions",
"lint": "npm run lint:js",
"lint:js": "eslint \"11ty/**/*.js\"",
2019-11-22 12:36:47 +01:00
"serve": "concurrently \"npm run serve:site\" \"npm run watch:css\"",
"serve:site": "eleventy --serve",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "eleventy --watch",
"watch:css": "parcel watch assets/css/base.scss --out-dir dist/assets/css/"
},
"bin": {
"create-definitions": "bin/create-definitions"
2019-11-11 23:53:23 +01:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/tatianamac/selfdefined.git"
},
"keywords": [
"dictionary"
],
"author": "Tatiana Mac",
"license": "ISC",
"bugs": {
"url": "https://github.com/tatianamac/selfdefined/issues"
},
"homepage": "https://github.com/tatianamac/selfdefined#readme",
"dependencies": {
"@11ty/eleventy": "^0.9.0",
"markdown-it-anchor": "^5.2.5",
"markdown-it-prism": "^2.0.3",
"prism-themes": "^1.3.0"
},
"devDependencies": {
2019-11-22 12:36:47 +01:00
"concurrently": "^5.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"esm": "^3.2.25",
2019-11-22 12:36:47 +01:00
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
2019-11-22 12:36:47 +01:00
"sass": "^1.23.7",
"slugify": "^1.3.6"
2019-11-11 23:53:23 +01:00
}
}