-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "notes",
"description": "Simple web application for user notes.",
"author": "Mayank Punetha<coder.mayank.punetha@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/mayankpunetha007/nodejstry.git"
},
"readme": "A simple notes application. Which allows user registration, Allows users to login and manages session, And allows them to create/udate/delete notes in a versioned fashion",
"license": "Apache-2.0",
"main": "server.js",
"version": "0.0.1",
"dependencies": {
"cookie-parser": "~1.4.3",
"sequelize": "~3.24.3",
"morgan": "~1.7.0",
"express": "~4.14.0",
"mocha": "~3.1.0",
"randomstring": "~1.1.5",
"sha1": "~1.1.1",
"body-parser": "~1.15.2",
"express-session": "~1.14.1",
"ejs": "~2.5.2",
"should": "~11.1.1",
"supertest": "~2.0.0",
"uuid": "~3.0.0"
},
"createdb": "createdb.js",
"start": "server.js",
"testapp": "mocha",
"dbProps":{
"db":"tasks",
"user":"test",
"pass":"test123",
"dialect":"postgres",
"port":5432
}
}