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/",
|
2020-02-17 00:04:57 +01:00
|
|
|
"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",
|
2020-02-16 23:26:53 +01:00
|
|
|
"test": "ava",
|
2020-02-17 00:04:57 +01:00
|
|
|
"watch": "eleventy --watch",
|
|
|
|
"watch:css": "parcel watch assets/css/base.scss --out-dir dist/assets/css/"
|
2019-11-18 23:59:33 +01:00
|
|
|
},
|
|
|
|
"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": {
|
2019-11-17 22:26:11 +01:00
|
|
|
"@11ty/eleventy": "^0.9.0",
|
|
|
|
"markdown-it-anchor": "^5.2.5",
|
|
|
|
"markdown-it-prism": "^2.0.3",
|
|
|
|
"prism-themes": "^1.3.0"
|
2019-11-18 23:59:33 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-02-16 23:26:53 +01:00
|
|
|
"ava": "^3.3.0",
|
2019-11-22 12:36:47 +01:00
|
|
|
"concurrently": "^5.0.0",
|
2020-02-17 00:04:57 +01:00
|
|
|
"eslint": "^6.8.0",
|
|
|
|
"eslint-config-prettier": "^6.10.0",
|
|
|
|
"eslint-plugin-prettier": "^3.1.2",
|
2019-11-18 23:59:33 +01:00
|
|
|
"esm": "^3.2.25",
|
2019-11-22 12:36:47 +01:00
|
|
|
"parcel-bundler": "^1.12.4",
|
2020-02-17 00:04:57 +01:00
|
|
|
"prettier": "^1.19.1",
|
2019-11-22 12:36:47 +01:00
|
|
|
"sass": "^1.23.7",
|
2019-11-18 23:59:33 +01:00
|
|
|
"slugify": "^1.3.6"
|
2019-11-11 23:53:23 +01:00
|
|
|
}
|
|
|
|
}
|