forked from Neha7199/mean-stack-example
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.26 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
{
"name": "mean-stack-example",
"version": "1.0.0",
"description": "Sample CRUD application built with the MEAN stack.",
"main": "index.js",
"scripts": {
"start": "npm run prepare && concurrently \"npm run start:server\" \"npm run start:client\"",
"start:server": "cd server && npm start",
"start:client": "cd client && npm start",
"prepare": "concurrently \"npm run prepare:server\" \"npm run prepare:client\"",
"prepare:server": "cd server && npm install",
"prepare:client": "cd client && npm install",
"build": "npm run prepare && concurrently \"npm run build:server\" \"npm run build:client\"",
"build:server": "cd server && npm run build",
"build:client": "cd client && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"contributors": [
{
"name": "Abirami Sukumaran",
"url": "https://github.com/AbiramiSukumaran"
},
{
"name": "Stanimira Vlaeva",
"url": "https://github.com/sis0k0"
}
],
"license": "Apache 2.0",
"homepage": "https://github.com/mongodb-developer/mean-stack-example#readme",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-developer/mean-stack-example.git"
},
"devDependencies": {
"concurrently": "^7.1.0"
}
}