-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.24 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
{
"name": "visual_compiler",
"version": "1.0.0",
"description": "",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "concurrently \"nodemon server.js\" \"cd client && npm start\"",
"installDependencies": "npm install && cd client && npm install && cd ..",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joydeep2001/visualCompiler.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/joydeep2001/visualCompiler/issues"
},
"homepage": "https://github.com/joydeep2001/visualCompiler#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"config": "^3.3.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.17.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^6.2.2",
"nodemailer": "^6.7.2",
"passport": "^0.5.2",
"passport-google-oauth20": "^2.0.0"
},
"devDependencies": {
"concurrently": "^7.0.0",
"dotenv": "^16.0.0"
}
}