-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 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
{
"name": "spacedb",
"version": "1.0.188+1719263158311",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js -w src -w index.js",
"start-db": "docker-compose -f test/docker-compose.yml up --build -d && node test/utilities/wait.mysql.js",
"stop-db": "docker-compose -f test/docker-compose.yml down -v",
"test": "mocha --timeout 10000",
"test:setup": "npm run start-db && npm test && npm run stop-db",
"test:watch": "npm run start-db && nodemon --exec 'npm test' --watch ."
},
"author": "",
"license": "LICENSE.md",
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@sqlite.org/sqlite-wasm": "^3.46.0-build2",
"@types/flatbuffers": "^1.10.3",
"better-sqlite3": "^11.0.0",
"chai": "^5.1.1",
"child_process": "^1.0.2",
"dotenv": "^16.4.5",
"flatbuffers": "23.3.3",
"fs": "^0.0.1-security",
"knex": "^3.1.0",
"mocha": "^10.4.0",
"mysql2": "^3.10.3",
"nodemon": "^3.1.4",
"path": "^0.12.7",
"promises": "^0.2.5",
"pure-ipfs-only-hash": "^4.0.2",
"spacedatastandards.org": "^1.0.188",
"zlib": "^1.0.5"
}
}