forked from llaske/sugarizer-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.57 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "sugarizer-server",
"description": "Server for Sugarizer application",
"version": "1.5.0",
"repository": "https://github.com/llaske/sugarizer-server",
"author": "Lionel Laské <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"async": "2.6.4",
"cookie-parser": "1.4.3",
"cors": "2.8.x",
"csv-parser": "~2.2.0",
"csv-writer": "~1.2.0",
"ejs": "~2.6.2",
"express": "4.17.3",
"express-flash": "~0.0.2",
"express-session": "1.15.6",
"express-validator": "5.3.1",
"http": "0.0.x",
"ini": "~1.3.x",
"jquery-datetimepicker": "^2.5.21",
"jwt-simple": "~0.5.1",
"moment": "2.29.4",
"mongodb": "~3.5.7",
"morgan": "1.9.1",
"multer": "~1.4.1",
"nyc": "^15.1.0",
"otplib": "^12.0.1",
"qrcode": "^1.4.4",
"streamifier": "^0.1.1",
"superagent": "^5.2.2",
"ws": "~7.4.0"
},
"devDependencies": {
"apidoc": "^0.51.1",
"chai": "*",
"chai-http": "*",
"eslint": "~6.6.0",
"grunt": "~1.5.3",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-imagemin": "^2.0.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-nodeunit": "^4.0.0",
"grunt-terser": "~1.0.0",
"mocha": "~10.2.0",
"nodemon": "*"
},
"scripts": {
"test": "mocha api/test/ --timeout 20000 --exit",
"coverage": "nyc --exclude 'dashboard/**' mocha api/test/ --timeout 20000 --exit",
"docs": "apidoc -i api/controller -i dashboard/helper -o docs/www/",
"start": "nodemon sugarizer.js",
"start:watch": "nodemon sugarizer.js",
"seed:users-csv": "node scripts/seed_users.js",
"lint": "eslint .; exit 0"
}
}