-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
70 lines (70 loc) · 1.88 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "aurelia-hacker-news",
"version": "1.0.0",
"description": "Hacker News clone built with Aurelia",
"homepage": "https://github.com/michaelbull/aurelia-hacker-news#readme",
"private": true,
"main": "src/main.ts",
"license": "ISC",
"author": {
"name": "Michael Bull",
"url": "https://www.michael-bull.com"
},
"keywords": [
"aurelia",
"typescript",
"webpack",
"hacker",
"news",
"clone"
],
"repository": {
"type": "git",
"url": "git+https://github.com/michaelbull/aurelia-hacker-news.git"
},
"bugs": {
"url": "https://github.com/michaelbull/aurelia-hacker-news/issues"
},
"scripts": {
"clean": "rimraf dist",
"start": "webpack-dev-server --mode=development --inline --hot",
"prebuild": "npm run clean",
"build": "webpack --mode=production",
"predeploy": "npm run build",
"deploy": "push-dir --dir=dist --branch=gh-pages"
},
"devDependencies": {
"@types/node": "14.6.0",
"@types/nprogress": "0.2.0",
"aurelia-bootstrapper": "2.3.3",
"aurelia-http-client": "1.3.1",
"aurelia-webpack-plugin": "4.0.0",
"breakpoint-sass": "2.7.1",
"css-loader": "4.2.1",
"css-mqpacker": "7.0.0",
"cssnano": "4.1.10",
"cssnano-preset-advanced": "4.0.7",
"file-loader": "6.0.0",
"firebase": "7.19.0",
"html-loader": "1.2.1",
"html-webpack-plugin": "4.3.0",
"mini-css-extract-plugin": "0.10.0",
"normalize.css": "8.0.1",
"nprogress": "0.2.0",
"postcss-loader": "3.0.0",
"push-dir": "0.4.1",
"resolve-url-loader": "3.1.1",
"rimraf": "3.0.2",
"sass": "1.26.10",
"sass-loader": "9.0.3",
"style-loader": "1.2.1",
"svg-inline-loader": "0.8.2",
"timeago.js": "4.0.2",
"ts-loader": "8.0.3",
"tslib": "2.0.1",
"typescript": "4.0.2",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
}
}