forked from gisderdube/graceful-error-handling
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1005 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1005 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
{
"name": "graceful-error-handling",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:server": "nodemon src/server/index.js",
"start:app": "parcel watch src/app/index.html",
"start": "concurrently \"npm run start:server\" \"npm run start:app\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/gisderdube/graceful-error-handling.git"
},
"author": "Lukas Gisder-Dubé",
"license": "ISC",
"bugs": {
"url": "https://github.com/gisderdube/graceful-error-handling/issues"
},
"homepage": "https://github.com/gisderdube/graceful-error-handling#readme",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"react": "^16.6.3",
"react-dom": "^16.6.3"
},
"devDependencies": {
"concurrently": "^4.0.1",
"nodemon": "^1.18.6",
"parcel-bundler": "^1.10.3"
}
}