-
-
Notifications
You must be signed in to change notification settings - Fork 170
/
package.json
86 lines (86 loc) · 2.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "selfdefined",
"private": true,
"version": "0.1.0",
"description": "A modern dictionary about us.",
"main": "index.js",
"scripts": {
"build": "concurrently npm:build:*",
"build:css": "parcel build assets/css/base.scss --out-dir dist/assets/css/",
"build:site": "eleventy",
"create-definitions": "bin/create-definitions",
"lint": "concurrently npm:lint:*",
"lint:css": "stylelint \"assets/css/**/*.scss\" --fix",
"lint:js": "eslint \"**/*.js\" --fix",
"lint:markdown": "markdownlint '**/*.md' --ignore node_modules",
"serve": "concurrently \"npm run serve:site\" \"npm run watch:css\"",
"serve:site": "eleventy --serve",
"test": "ava",
"watch": "eleventy --watch",
"watch:css": "parcel watch assets/css/base.scss --out-dir dist/assets/css/"
},
"bin": {
"create-definitions": "bin/create-definitions"
},
"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",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint && npm run test"
}
},
"lint-staged": {
"11ty/**/*.js": [
"npm run lint:js -- --fix",
"npm run test"
],
"assets/css/**/*.scss": [
"npm run lint:css -- --fix"
],
"**/*.md": [
"npm run lint:markdown -- --fix"
]
},
"dependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-rss": "^1.0.7",
"markdown-it-anchor": "^5.3.0",
"markdown-it-prism": "^2.0.5"
},
"devDependencies": {
"autoprefixer": "^9.8.0",
"ava": "^3.8.2",
"concurrently": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"esm": "^3.2.25",
"husky": "^4.2.5",
"lint-staged": "^10.2.7",
"markdownlint-cli": "^0.23.1",
"parcel-bundler": "^1.12.4",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.19.1",
"sass": "^1.32.12",
"slugify": "^1.4.0",
"stylelint": "^13.5.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.17.2"
},
"engines": {
"node": "14"
}
}