-
Notifications
You must be signed in to change notification settings - Fork 812
/
package.json
38 lines (38 loc) · 1.02 KB
/
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
35
36
37
38
{
"name": "mern-ecommerce",
"version": "1.0.0",
"description": "MERN Ecommerce",
"main": "server/index.js",
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"dev:client": "cd client && npm run dev",
"dev:server": "cd server && npm run dev",
"postinstall": "npm-run-all --parallel install:*",
"install:client": "cd client && npm install",
"install:server": "cd server && npm install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohamedsamara/mern-ecommerce.git"
},
"keywords": [
"node",
"express",
"mongoose",
"react",
"redux",
"redux-thunk",
"webpack"
],
"author": "Mohamed Samara (https://github.com/mohamedsamara)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohamedsamara/mern-ecommerce/issues"
},
"homepage": "https://github.com/mohamedsamara/mern-ecommerce#readme",
"devDependencies": {
"cross-env": "^5.2.1",
"npm-run-all": "^4.1.5"
}
}