-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.76 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
{
"name": "rptide-server",
"version": "0.9.1",
"engines": {
"node": "14.x"
},
"description": "This is the server for rptide",
"main": "index.js",
"scripts": {
"build": "rimraf dist && npx tsc && cp -r s-static/ dist/",
"predev": "npm run build",
"dev": "cross-env NODE_ENV=development concurrently \"tsc --watch\" \"nodemon dist/index.js\"",
"prestart": "npm run build",
"start": "cross-env NODE_ENV=production node dist/index.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm install --only=dev --prefix client && npm run build --prefix client"
},
"author": "aleem ahmed",
"license": "MIT",
"dependencies": {
"@ceramicnetwork/http-client": "^1.5.7",
"@glazed/datamodel": "^0.2.0",
"@glazed/devtools": "^0.1.6",
"@glazed/did-datastore": "^0.2.3",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.35",
"@types/validator": "^13.7.2",
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"concurrently": "^7.4.0",
"connect-history-api-fallback": "^2.0.0",
"cors": "^2.8.4",
"cross-env": "^7.0.3",
"dids": "^2.4.3",
"dotenv": "^10.0.0",
"express": "^4.16.3",
"express-rate-limit": "^5.1.3",
"jsonwebtoken": "^8.5.1",
"key-did-provider-ed25519": "^1.1.0",
"key-did-resolver": "^1.4.4",
"mongoose": "^6.0.13",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"sib-api-v3-sdk": "^8.4.2",
"socket.io": "^4.1.2",
"stripe": "^8.171.0",
"typescript": "^4.8.4",
"uint8arrays": "^3.0.0",
"uuid": "^9.0.0",
"validator": "^13.1.1"
}
}