-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "mindseal",
"version": "0.2.0",
"description": "Machine-learning Flashcard web-app",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon dev/server.js --exec babel-node --presets es2015,stage-2",
"build": "babel dev -d dist --presets es2015,stage-2",
"serve": "nodemon dist/server.js",
"postinstall": "./node_modules/bower/bin/bower install"
},
"author": "Kyle Baker",
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.13.3",
"bower": "^1.6.5",
"connect-mongo": "^0.8.2",
"cookie-session": "^1.2.0",
"eslint": "^2.3.0",
"express": "^4.13.3",
"moment": "^2.11.2",
"mongodb": "^2.0.47",
"morgan": "^1.6.1",
"nodemailer": "^2.2.1",
"request-promise": "^0.4.3",
"session": "^0.1.0"
},
"repository": {
"type": "git",
"url": "git://github.com/finetype/mind-seal.git"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"nodemon": "^1.9.1",
"babel-preset-stage-2": "^6.5.0",
"babel-preset-es2015": "^6.6.0"
}
}