-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "small-waffle",
"version": "1.1.0",
"description": "Lightweight Waffle Server.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "export PORT=4444 && export VERBOSITY=4 && nodemon index.js --ignore datasets/ --ignore events/",
"serve": "pm2 start pm2.config.cjs",
"test": "export PORT=4444 && export VERBOSITY=0 && export EVENTFILENAME=test && mocha --timeout 2000",
"build": "echo 'No build step required for serverless functions'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@vizabi/reader-ddfcsv": "4.5.0",
"crypto": "^1.0.1",
"csv-parser": "^3.0.0",
"dotenv": "^16.4.5",
"isomorphic-git": "^1.25.10",
"koa": "^2.15.3",
"koa-compress": "^5.1.1",
"koa-router": "^12.0.1",
"koa-static": "^5.0.0",
"node-cron": "^3.0.3",
"node-fetch": "^3.3.2",
"urlon": "^2.1.0"
},
"devDependencies": {
"chai": "^5.1.1",
"husky": "^8.0.0",
"mocha": "^10.7.0",
"nodemon": "^3.0.3",
"supertest": "^7.0.0"
}
}