forked from codestates/Lumiere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "lumiere",
"version": "1.0.0",
"description": "MERN E-Commerce app, The final project of minimanimo.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node server/index",
"server": "nodemon server/index",
"client": "npm start --prefix client",
"predev": "kill -9 $(lsof -i :5000 | grep -i -E -o '\\s[0-9]+\\s') || true",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/codestates/Lumiere.git"
},
"author": "Minimanimo",
"license": "ISC",
"bugs": {
"url": "https://github.com/codestates/Lumiere/issues"
},
"homepage": "https://github.com/codestates/Lumiere#readme",
"dependencies": {
"app-root-path": "^3.0.0",
"axios": "^0.24.0",
"bcrypt": "^5.0.1",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.13",
"morgan": "^1.10.0",
"qs": "^6.10.2",
"winston": "^3.6.0",
"winston-daily-rotate-file": "^4.6.1"
},
"devDependencies": {
"concurrently": "^6.4.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.0"
}
}