-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.06 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.06 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
{
"name": "Language-Tracker",
"main": "server/server.js",
"version": "0.0.1",
"author": "Nicholas Litwin",
"description": "Track your language progress",
"keywords": [
"language",
"languages",
"foreign",
"progress",
"tracker",
"diary",
"todo",
"to do",
"study",
"organize"
],
"repository": {
"type": "git",
"url": "git://github.com/polynickglot/Language-Tracker"
},
"scripts": {
"start": "nodemon server/server.js"
},
"dependencies": {
"bcrypt": "^0.8.1",
"body-parser": "^1.10.2",
"compression": "^1.4.0",
"express": "^4.9.8",
"jwt-simple": "^0.2.0",
"mongodb": "^1.4.29",
"mongoose": "^4.0.1",
"serve-favicon": "^2.2.0"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-coffee": "^0.13.0",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-jade": "^0.14.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-newer": "^1.1.0",
"load-grunt-tasks": "^3.1.0",
"morgan": "^1.4.1",
"time-grunt": "^1.1.0"
}
}