forked from selfdefined/web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.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
{
"name": "selfdefined",
"private": true,
"version": "0.1.0",
"description": "A modern dictionary about us.",
"main": "index.js",
"scripts": {
"build": "npm run build:css && npm run build:site",
"build:site": "eleventy",
"build:css": "parcel build assets/css/base.scss --out-dir assets/css/",
"watch": "eleventy --watch",
"serve": "concurrently \"npm run serve:site\" \"npm run watch:css\"",
"watch:css": "parcel watch assets/css/base.scss --out-dir dist/assets/css/",
"serve:site": "eleventy --serve",
"test": "echo \"Error: no test specified\" && exit 1",
"create-definitions": "bin/create-definitions"
},
"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",
"dependencies": {
"@11ty/eleventy": "^0.9.0",
"markdown-it-anchor": "^5.2.5",
"markdown-it-prism": "^2.0.3",
"prism-themes": "^1.3.0"
},
"devDependencies": {
"concurrently": "^5.0.0",
"esm": "^3.2.25",
"parcel-bundler": "^1.12.4",
"sass": "^1.23.7",
"slugify": "^1.3.6"
}
}