-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·51 lines (51 loc) · 1.43 KB
/
package.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.43 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
{
"name": "themo_web",
"version": "1.0.0",
"description": "Themo Web Site",
"main": "app/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-css": "stylus app/source/stylesheets/index.styl -o app/static/css",
"watch-css": "stylus app/source/stylesheets/index.styl -o app/static/css -w",
"clean": "rm -rf app/static/css && mkdir -p app/static/css",
"build": "npm run clean && npm run build-css",
"watch": "npm run clean && npm run watch-css & nodemon app/server -e js,jade",
"start": "node app/server"
},
"keywords": [
"themo",
"web",
"anl"
],
"author": "imardix@univ.haifa.ac.il",
"license": "ISC",
"dependencies": {
"adm-zip": "^0.4.11",
"async": "^2.5.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"bower": "^1.8.0",
"cheerio": "^1.0.0-rc.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"dateformat": "^2.0.0",
"dict": "^1.4.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"express-validator": "^5.3.0",
"fibers": "^2.0.0",
"jade": "^1.11.0",
"mongo-to-csv": "^1.0.1",
"mongoose": "^5.3.0",
"morgan": "^1.9.1",
"nodemailer": "^4.6.5",
"nodemon": "^1.18.4",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pug": "^2.0.0-rc.2",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"stylus": "^0.54.5",
"synchronize": "^2.0.0"
}
}