-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "halogen",
"version": "1.0.0",
"description": "![screencapture of halogen design](https://i.imgur.com/wOqaeSV.png)",
"main": "index.js",
"engines": {
"node": "16.4.2"
},
"scripts": {
"start": "node server/index.js",
"client": "cd client && npm start",
"server": "nodemon server/index.js",
"build": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/developer-delta/halogen.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/developer-delta/halogen/issues"
},
"homepage": "https://github.com/developer-delta/halogen#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"mongodb": "^4.0.0",
"mongoose": "^5.13.5",
"nodemon": "^2.0.12",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react-color": "^2.19.3",
"react-modal": "^3.14.3"
}
}