-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "ogitart",
"version": "0.0.1",
"description": "Commande de sandwichs",
"main": "server.js",
"repository": "https://github.com/jbruggem/ogitart.git",
"scripts": {
"test": "npm run lint && mocha",
"build": "npm install --only=production && sh build.sh",
"mon": "nodemon ogitart.js",
"lint": "jshint src/",
"start": "NODE_ENV=production forever -m5 start ./ogitart.js",
"restart": "NODE_ENV=production forever restart ./ogitart.js",
"stop": "forever stop ./ogitart.js",
"logs": "forever logs"
},
"author": "Jehan Bruggeman <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"body-parser": "^1.20.1",
"bootstrap": "^4.3.1",
"browserify": "^16.2.3",
"cors": "^2.8.5",
"diacritics": "^1.2.1",
"express": "^4.17.3",
"forever": "^4.0.3",
"jfs": "^0.3.0",
"jquery": "^3.5.0",
"lodash": "^4.17.21",
"mkdirp": "^0.5.6",
"typeahead.js": "^0.11.1"
},
"devDependencies": {
"jshint": "^2.9.6",
"mocha": "^10.2.0",
"nodemon": "^1.18.7",
"rimraf": "^2.6.2",
"should": "^13.2.3",
"supertest": "^3.3.0"
}
}