-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.26 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
{
"name": "yttringar",
"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://github.com/sebgroup/yttringar",
"bugs": "https://github.com/sebgroup/yttringar/issues",
"repository": {
"type": "git",
"url": "https://github.com/sebgroup/yttringar.git"
},
"scripts": {
"start": "http-server dist --port 5000 --cors",
"dev": "parcel serve src/*.html src/client.ts src/stylesheets/themes/*/{index,yttringar}.scss --no-hmr --port 4000",
"build": "parcel build src/*.html src/client.ts src/stylesheets/themes/*/{index,yttringar}.scss --experimental-scope-hoisting",
"lint": "tslint --project tsconfig.json"
},
"devDependencies": {
"@primer/css": "^13.2.0",
"autoprefixer": "^9.7.1",
"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.1.1",
"posthtml-include": "^1.3.2",
"posthtml-md": "^1.1.0",
"sass": "^1.23.3",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"dependencies": {
"http-server": "^0.12.0"
}
}