-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.57 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
{
"name": "hermes",
"version": "3.0.0",
"description": "A decentralized messaging app",
"main": "server.js",
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cassandra-driver": "^4.3.1",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-favicon": "^2.0.1",
"file-exists": "^5.0.1",
"request": "^2.88.0",
"sass": "^1.23.3",
"web-push": "^3.4.1"
},
"devDependencies": {
"mocha": "^6.2.2",
"supertest": "^4.0.2"
},
"scripts": {
"build-css": "sass --no-source-map -s compressed web_client/scss/:web_client/css/",
"watch-css": "sass --source-map --watch web_client/scss/:web_client/css/",
"build-css-source-map": "sass --source-map -s compressed web_client/scss/:web_client/css/",
"prepare-project": "node scripts/prepareProject.js && npm run build-css",
"prepare-project-no-css": "node scripts/prepareProject.js",
"test": "mocha --exit scripts/test.js",
"start": "node server.js",
"start-no-css": "node server.js",
"debug": "node --inspect server.js",
"prestart": "npm run prepare-project",
"prestart-no-css": "npm run prepare-project-no-css",
"postinstall": "npm run prepare-project",
"watch": "node scripts/watch.js",
"cleanup": "node scripts/cleanup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HermesMessenger/Hermes.git"
},
"author": "CoderDojo Majadahonda",
"license": "MIT",
"bugs": {
"url": "https://github.com/HermesMessenger/Hermes/issues"
},
"homepage": "https://github.com/HermesMessenger/Hermes#readme"
}