-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "hacker-news",
"version": "0.1.0",
"description": "Hacker News clone as a part of React learning curriculum",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --host 0.0.0.0",
"build": "NODE_ENV='production' webpack"
},
"author": "Natanael de Kross <[email protected]> (https://github.com/ndekross/)",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"css-loader": "^3.5.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.2.0",
"babel-polyfill": "^6.26.0",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"emotion": "^10.0.27",
"font-measure": "^1.2.2",
"hyphen": "^1.5.0",
"lodash": "^4.17.15",
"markdown-to-jsx": "^6.11.1",
"marked": "^0.8.2",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react-html-parser": "^2.0.2",
"react-icons": "^3.9.0",
"react-router-dom": "^5.1.2",
"smartquotes": "^2.3.1"
}
}