-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 KB
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
39
40
41
42
43
44
45
46
47
{
"name": "node-server",
"version": "1.0.0",
"description": "Web Server for MM Auto Care",
"main": "src/server.ts",
"scripts": {
"start": "nodemon ./src/server.js",
"build": "webpack -w",
"build-prod": "webpack --mode production",
"dev": "nodemon --exec babel-node ./src/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dannylee921203/animal-express.git"
},
"keywords": [
"express",
"mongodb"
],
"author": "Jaehoon",
"license": "MIT",
"bugs": {
"url": "https://github.com/dannylee921203/animal-express/issues"
},
"homepage": "https://github.com/dannylee921203/animal-express#readme",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@sendgrid/mail": "^7.4.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.11.17"
},
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/node": "^7.12.17",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.12.17",
"babel-loader": "^8.2.2",
"nodemon": "^2.0.7",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^2.5.2"
}
}