-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 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
46
47
48
49
50
51
52
53
54
55
{
"name": "daedelus",
"version": "1.0.0",
"description": "Initiative for a dataless cx websdk",
"scripts": {
"mongod:init": "echo \"> mongo\n> use mainDB\n> db.createUser({user:\"api\", pwd:\"M4KgnR32\", roles:[{role:\"readWrite\", db:\"mainDB\"}]})\n> db.respondents.insertOne({satisfaction: 0, rage: 0, fidelity: 0})\"",
"mongod": "mongod --config mongodb/mongod.conf --auth",
"start": "node server.js",
"dev": "nodemon --exec \"clear && node server.js\"",
"push": "git subtree push --prefix web origin gh-pages && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foreseecode/daedelus.git"
},
"keywords": [
"daedalus",
"dataless",
"sdk",
"websdk",
"privacy",
"hackathon",
"hackathon2019"
],
"author": "Guillaume Peugniez",
"contributors": [
"Calvin Gerus <calvin.gerus@foresee.com>",
"Pablo Suarez <pablo97suarez@gmail.com>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/foreseecode/daedelus/issues"
},
"homepage": "https://github.com/foreseecode/daedelus#readme",
"dependencies": {
"body-parser": "^1.18.3",
"chalk": "^2.4.2",
"express": "^4.16.4",
"mongodb": "^3.2.3"
},
"prettier": {
"overrides": [
{
"files": "*.html?",
"options": {
"printWidth": 160
}
}
]
},
"devDependencies": {
"eslint": "^5.16.0",
"serve": "^11.0.1"
}
}