forked from ddrosario/react-review-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"name": "react-review-workshop",
"version": "1.0.0",
"description": "React review for HRLA 28",
"main": "index.js",
"scripts": {
"start": "nodemon ./server",
"build": "webpack -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DDRosario/react-review-workshop.git"
},
"keywords": [
"react",
"workshop"
],
"author": "ddrosario",
"license": "ISC",
"bugs": {
"url": "https://github.com/DDRosario/react-review-workshop/issues"
},
"homepage": "https://github.com/DDRosario/react-review-workshop#readme",
"dependencies": {
"babel-loader": "^8.0.5",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"path": "^0.12.7",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.0.0"
}
}