-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 KB
/
package.json
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
{
"name": "Buckutt",
"main": "app.js",
"description": "Systeme de paiement electronique",
"bin": {
"migrate": "./bin/migrate"
},
"dependencies": {
"bcryptjs": "^2.1.0",
"bluebird": "^2.9.13",
"body-parser": "^1.3.1",
"express": "^4.12.0",
"express-jwt": "^1.0.0",
"forever": "^0.11.1",
"inflection": "^1.6.0",
"jsonwebtoken": "^5.0.0",
"mariasql": "^0.1.22",
"method-override": "^2.3.1",
"moment": "^2.9.0",
"morgan": "^1.5.1",
"mysql": "^2.5.5",
"nconf": "^0.6.9",
"orm": "^2.1.22",
"sequelize": "2.0.4",
"should": "^4.6.5",
"supertest": "^0.13.0",
"underscore": "^1.8.2",
"winston": "^0.7.3"
},
"scripts": {
"start": "./node_modules/forever/bin/forever start -a -o ./logs/server.log -e ./logs/server.err ./app.js ",
"stop": "./node_modules/forever/bin/forever stopall ",
"dev": "nodemon app.js",
"test": "./node_modules/mocha/bin/mocha ./test/ --recursive --reporter spec; npm run lint",
"testw": "./node_modules/mocha/bin/mocha ./test/ --watch --recursive --reporter spec",
"lint": "echo 'Running jshint...\n'; jshint ./libs ./middlewares ./models ./routes ./test ./models/User.js app.js"
},
"devDependencies": {
"jshint": "latest",
"mocha": "latest",
"nodemon": "latest"
}
}