-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 738 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 738 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
{
"name": "mernstack",
"version": "1.0.1",
"description": "Learning MERN stack from Traversy",
"main": "src/server.ts",
"scripts": {
"build": "node node_modules/typescript/bin/tsc && cd client && npm install && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./lib/server.js",
"server": "nodemon src/server.ts"
},
"author": "Kunal Raje",
"license": "MIT",
"dependencies": {
"@types/cors": "^2.8.6",
"concurrently": "^5.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.9.12",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/mongoose": "^5.7.15",
"@types/node": "^13.13.4"
}
}