This repository was archived by the owner on Aug 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·62 lines (62 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·62 lines (62 loc) · 1.41 KB
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
{
"name": "hypernews",
"version": "2.0.0",
"description": "hacker news implementation with hyperapp",
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack",
"prestart": "npm run build",
"start": "webpack-dev-server --history-api-fallback public/ --open"
},
"keywords": [
"hyperapp",
"hackernews"
],
"main": "src/main.js",
"author": "",
"license": "ISC",
"dependencies": {
"@hyperapp/router": "^0.2.3",
"classnames": "^2.2.5",
"hyperapp": "^0.12.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"@babel/register": "^7.0.0-beta.39",
"babel-plugin-dynamic-import-webpack": "^1.0.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^1.0.0",
"eslint": "^5.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"firebase": "^5.2.0",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"babel": {
"presets": [
[
"env",
{
"module": false
}
]
],
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h"
}
],
"dynamic-import-webpack"
]
}
}