-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 897 Bytes
/
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
{
"name": "hacker-guide",
"version": "1.0.0",
"description": "",
"main": "render-markdown.js",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-markdown": "^4.2.2"
},
"scripts": {
"build": "webpack -p --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"watch": "webpack -w --config webpack.dev.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "cktang88",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.0",
"prettier": "^1.14.3",
"raw-loader": "^0.5.1",
"style-loader": "^0.23.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.2"
}
}