-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 3.11 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "preact-hn",
"version": "1.0.0",
"description": "A hacker news clone built with preact",
"author": "malbernaz <[email protected]>",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/malbernaz/preact-hn.git"
},
"keywords": [
"preact",
"pwa",
"hackernews"
],
"bugs": {
"url": "https://github.com/malbernaz/preact-hn/issues"
},
"homepage": "https://preact-hn.now.sh",
"scripts": {
"build:dev:client": "webpack --env dev:client",
"build:dev:server": "webpack --env dev:server",
"build:dev": "npm run cleandist && npm run build:dev:client && npm run build:dev:server",
"build:prod:client": "webpack --env prod:client",
"build:prod:server": "webpack --env prod:server",
"build": "npm run cleandist && npm run build:prod:client && npm run build:prod:server",
"cleandist": "rimraf dist",
"dev": "npm run build:dev && concurrently --raw --kill-others 'npm run watch:server' 'npm run nodemon' 'npm run watch:client'",
"nodemon": "nodemon --watch dist --ignore dist/public/ --delay 1 dist",
"start": "node dist",
"watch:client": "webpack-dev-server --env dev:client",
"watch:server": "webpack --env dev:server --watch"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-jsx-pragmatic": "^1.0.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"babili-webpack-plugin": "^0.1.2",
"concurrently": "^3.5.0",
"copy-webpack-plugin": "^4.0.0",
"css-loader": "^0.28.5",
"cssnano": "^3.10.0",
"eslint": "^4.2.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.2.1",
"fast-async": "^6.3.0",
"file-loader": "^0.11.2",
"image-webpack-loader": "^3.3.1",
"isomorphic-style-loader": "^4.0.0",
"json-loader": "^0.5.4",
"node-sass": "^4.5.3",
"nodemon": "^1.11.0",
"postcss-loader": "^2.0.6",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"url-loader": "^0.5.9",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.5.1",
"webpack-stats-plugin": "^0.1.5",
"worker-loader": "github:malbernaz/worker-loader"
},
"dependencies": {
"compression": "^1.7.0",
"express": "^4.15.3",
"firebase": "^4.3.0",
"isomorphic-fetch": "^2.2.1",
"lru-cache": "^4.1.1",
"normalize.css": "^7.0.0",
"preact": "^8.2.1",
"preact-render-to-string": "^3.6.3",
"preact-transition-group": "^1.1.1",
"promise-worker": "^1.1.1",
"query-string": "^5.0.0",
"serve-favicon": "^2.4.3",
"tiny-history": "^1.0.7",
"unfetch": "^3.0.0",
"universal-router": "^3.2.0",
"webpack-bundle-analyzer": "^2.9.0"
}
}