forked from gosqasorg/asset-provenance-tracking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "gosqas-asset-provenance-tracking",
"version": "0.0.0-placeholder",
"description": "",
"main": "dist/app.js",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "node dist/app.js",
"build": "tsc",
"postinstall": "npm run build",
"watch": "tsc --watch",
"dev": "tsc && nodemon dist/app.js"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-only",
"dependencies": {
"@fastify/formbody": "^7.4.0",
"@fastify/multipart": "^7.6.1",
"@fastify/static": "^6.10.2",
"@fastify/view": "^7.4.1",
"bs58": "^5.0.0",
"dotenv": "^16.3.0",
"fastify": "^4.18.0",
"fnv-plus": "^1.3.1",
"liquidjs": "^10.8.3",
"pg": "^8.11.1",
"pg-hstore": "^2.3.4",
"qrcode": "^1.5.3",
"sequelize": "^6.32.0",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@tsconfig/node18": "^2.0.1",
"@types/chai": "^4.3.5",
"@types/ejs": "^3.1.2",
"@types/fnv-plus": "^1.3.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"@types/pg": "^8.10.2",
"@types/qrcode": "^1.5.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}