-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "nodemiw",
"version": "1.0.0",
"description": "cours de node et mongo",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=development",
"watch": "npm run build && npm-run-all --parallel watch:server watch:build",
"watch:build": "webpack --mode=development --watch",
"watch:server": "nodemon --inspect=9223 \"./dist/index.js\" --watch \"./dist\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Anthony-Buisson/nodeMIW.git"
},
"keywords": [
"node",
"mongo"
],
"author": "Anthony Buisson",
"license": "ISC",
"bugs": {
"url": "https://github.com/Anthony-Buisson/nodeMIW/issues"
},
"homepage": "https://github.com/Anthony-Buisson/nodeMIW#readme",
"devDependencies": {
"app-root-path": "^3.0.0",
"cors": "^2.8.5",
"nodemon": "^2.0.1",
"npm-run-all": "^4.1.5",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.7.13"
}
}