forked from utterance/utterances
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.46 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
{
"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": {
"autoprefixer": "^9.3.1",
"gh-pages": "^2.0.1",
"github-syntax-dark": "^0.5.0",
"github-syntax-light": "^0.5.0",
"parcel-bundler": "^1.10.3",
"parcel-plugin-clean-dist": "^0.0.6",
"posthtml-expressions": "^1.1.0",
"posthtml-include": "^1.2.0",
"posthtml-md": "^1.1.0",
"primer-alerts": "^1.5.11",
"primer-base": "^1.9.0",
"primer-buttons": "^2.6.2",
"primer-forms": "^2.1.6",
"primer-markdown": "^3.7.11",
"primer-navigation": "^1.5.9",
"sass": "^1.15.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}