-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 979 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 979 Bytes
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
{
"name": "BudgetManager",
"author": "Maxime De Sogus",
"dependencies": {
"angular-toastr": "^2.1.1",
"bcrypt-nodejs": "latest",
"body-parser": "latest",
"cookie-parser": "latest",
"cookie-session": "latest",
"cors": "latest",
"express": "latest",
"jsonwebtoken": "latest",
"mongoose": "^4.2.5",
"morgan": "latest",
"mysql": "latest",
"nodemon": "^1.11.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"eslint": "^2.9.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-jsx-a11y": "^1.0.4",
"eslint-plugin-react": "^5.0.1",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-contrib-uglify": "~0.5.0",
"grunt-shell": "^1.1.2"
},
"scripts": {
"mongo": "(nohup mongod --dbpath=./db/) &",
"mongo-dev": "mongod --dbpath=./db/",
"start": "./node_modules/.bin/nodemon server.js"
}
}