forked from witchard/tutorial-react-parcel-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 957 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
{
"name": "tutorial-react-parcel-express",
"version": "1.0.0",
"description": "A tiny getting started for a react project, with front-end built with parcel, and served through express.",
"main": "index.js",
"scripts": {
"build-watch": "parcel watch ./client/index.html",
"start-watch": "nodemon server/index.js",
"dev": "concurrently --kill-others \"npm run start-watch\" \"npm run build-watch\"",
"build": "parcel build ./client/index.html",
"start": "npm run build && node server/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"tutorial",
"react",
"parcel",
"express"
],
"author": "witchard",
"license": "MIT",
"repository": "github:witchard/tutorial-react-parcel-express",
"devDependencies": {
"concurrently": "*",
"nodemon": "*",
"parcel-bundler": "*"
},
"dependencies": {
"express": "*",
"react": "*",
"react-dom": "*"
}
}