forked from utterance/utterances
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.3 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
{
"name": "utterances",
"version": "1.0.0",
"description": "A lightweight comments widget built on GitHub issues.",
"private": true,
"license": "MIT",
"keywords": [
"github",
"comments-widget",
"comments",
"blog"
],
"homepage": "https://utteranc.es",
"bugs": "https://github.com/utterance/utterances/issues",
"repository": {
"type": "git",
"url": "https://github.com/utterance/utterances.git"
},
"scripts": {
"start": "parcel serve src/*.html src/client.ts src/stylesheets/themes/*/{index,utterances}.scss --no-hmr --port 4000",
"build": "parcel build src/*.html src/client.ts src/stylesheets/themes/*/{index,utterances}.scss --experimental-scope-hoisting",
"lint": "tslint --project tsconfig.json",
"predeploy": "yarn run build && touch dist/.nojekyll && echo 'utteranc.es' > dist/CNAME",
"deploy": "gh-pages --dist dist"
},
"devDependencies": {
"@primer/css": "^14.2.0",
"autoprefixer": "^9.7.4",
"gh-pages": "^2.2.0",
"github-syntax-dark": "^0.5.0",
"github-syntax-light": "^0.5.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-clean-dist": "^0.0.6",
"posthtml-expressions": "^1.2.0",
"posthtml-include": "^1.4.0",
"posthtml-md": "^1.1.0",
"sass": "^1.26.3",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
}
}