-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1002 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1002 Bytes
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
{
"name": "fromscratch",
"version": "1.0.0",
"description": "Practicing",
"main": "server.js",
"scripts": {
"react-dev": "webpack -d --watch",
"server-dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cmurray1105/FromScratch.git"
},
"author": "Christopher Murray",
"license": "ISC",
"bugs": {
"url": "https://github.com/cmurray1105/FromScratch/issues"
},
"homepage": "https://github.com/cmurray1105/FromScratch#readme",
"dependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel": "^6.23.0",
"babel-loader": "^8.1.0",
"express": "^4.17.1",
"mysql": "^2.18.1",
"nodemon": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}