-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 3.31 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "smart-db",
"version": "1.1.296",
"description": "Smart DB",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"private": false,
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/protofire/Cardano-SmartDB.git"
},
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json && npm run build-css",
"build-css": "postcss src/styles.scss -o dist/styles.css",
"watchBuild": "tsc -w -p tsconfig.json && npm run build-css",
"deleteOldPack": "[ -f smart-db.tgz ] && rm smart-db.tgz && find . -name '*smart-db-*.tgz' -exec rm {} + || true",
"pack": "npm version patch --no-git-tag-version && npm run deleteOldPack && npm run build && PACK_FILE=$(npm pack) && mv \"$PACK_FILE\" smart-db.tgz",
"watchPack": "chokidar \"src/**/*\" -c \"npm run pack\"",
"clean": "rm -rf ./dist ./tsconfig.tsbuildinfo ",
"cleanAll": "npm run clean && rm -rf ./node_modules"
},
"dependencies": {
"axios": "^1.6.8",
"bignumber.js": "^9.1.1",
"cls-hooked": "^4.2.2",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"easy-peasy": "^5.0.4",
"he": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"lucid-cardano": "^0.10.10",
"mongoose": "^8.3.2",
"next-http-proxy-middleware": "^1.2.5",
"nodemailer": "^6.9.1",
"pg": "^8.12.0",
"pg-promise": "^11.8.0",
"qs": "^6.12.1",
"raw-body": "^2.5.2",
"react-notifications-component": "^4.0.1",
"sanitize-html": "^2.13.0",
"typeorm": "^0.3.20",
"yup": "^1.0.2"
},
"peerDependencies": {
"next": "^12.1.6",
"next-auth": "^4.24.7",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.12",
"@types/cls-hooked": "^4.3.8",
"@types/cors": "^2.8.13",
"@types/formidable": "^3.4.5",
"@types/he": "^1.2.3",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/mongoose": "^5.11.97",
"@types/next": "^9.0.0",
"@types/next-auth": "^3.15.0",
"@types/node": "20.5.9",
"@types/nodemailer": "^6.4.7",
"@types/pg": "^8.11.6",
"@types/qs": "^6.9.15",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@types/react-modal": "^3.16.3",
"@types/sanitize-html": "^2.11.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.1.3",
"chokidar-cli": "^3.0.0",
"cross-env": "^7.0.3",
"cssnano": "^7.0.6",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"jest": "^29.6.2",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-modules": "^6.0.0",
"postcss-nested": "^6.2.0",
"postcss-scss": "^4.0.9",
"prettier": "^2.5.1",
"reflect-metadata": "^0.1.13",
"sass": "^1.80.4",
"typescript": "^5.2.2",
"typescript-transform-paths": "^3.4.7"
}
}