forked from hrdtbs-lb/typography-training
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1009 Bytes
/
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
{
"name": "frontend-starter",
"repository": "https://github.com/hrdtbs-teaching/frontend-starter",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.4.0",
"gh-pages": "^2.1.1",
"marked": "^0.7.0",
"parcel-bundler": "^1.12.3",
"parcel-plugin-markdown-string": "^1.4.0",
"prettier": "^1.18.2",
"prettier-stylelint": "^0.4.2",
"stylelint": "^10.1.0",
"stylelint-config-recess-order": "^2.0.3",
"stylelint-config-recommended": "^2.2.0"
},
"scripts": {
"dev": "parcel src/index.html",
"build": "parcel build src/index.html --public-url ./",
"deploy": "gh-pages -d dist"
},
"marked": {
"breaks": true,
"pedantic": false,
"gfm": true,
"tables": true,
"sanitize": false,
"smartLists": true,
"smartypants": false,
"xhtml": false
}
}