-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.63 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.63 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
56
57
58
59
{
"name": "polyannoed",
"version": "0.0.1",
"description": "A responsive UI to transcribe and translate images",
"main": "server.js",
"scripts": {
"watch": "nodemon ./server.js --ignore public/",
"start": "concurrently \"npm run watch\" --names \"💻\" --prefix name",
"sample": "node ./examples/load-sample-data.js",
"delete-sample": "node ./examples/load-sample-data.js --delete"
},
"author": "Erin Nolan, Indra Lukmana",
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/UoEMainLibrary/PolyannoEd.git"
},
"devDependencies": {
"concurrently": "^3.4.0",
"eslint-plugin-html": "^3.0.0",
"nodemon": "^1.11.0",
"pug-lint": "^2.4.0",
"standard": "^10.0.2"
},
"dependencies": {
"body-parser": "^1.17.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"es6-promisify": "^5.0.0",
"express": "^4.15.3",
"express-session": "^1.15.3",
"express-validator": "^3.2.0",
"healthcheck-middleware": "^1.0.1",
"jade-bootstrap": "^1.0.14",
"mongodb": "^2.2.28",
"mongoose": "^4.10.6",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-github": "^1.1.0",
"passport-google-oauth": "^1.0.0",
"passport-linkedin": "^1.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.0.0",
"passport-twitter": "^1.0.4",
"path": "^0.12.7",
"pug": "^2.0.0-rc.2",
"universalviewer": "^2.0.2",
"validator": "^7.2.0"
},
"standard": {
"globals": [
"$",
"Polyanno"
]
}
}