This repository was archived by the owner on Nov 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.55 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.55 KB
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
{
"name": "demo-parse-server-migration",
"version": "1.1.0",
"main": "dist/index.js",
"private": true,
"dependencies": {
"@codemirror/language": "^0.20.0",
"@ethersproject/bignumber": "^5.7.0",
"@moralisweb3/common-core": "^2.18.1",
"@moralisweb3/parse-server": "2.18.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"envalid": "7.3.1",
"ethers": "^6.3.0",
"express": "^4.18.1",
"express-rate-limit": "^6.5.1",
"graphql": "^16.6.0",
"graphql-ws": "^5.10.1",
"moralis": "^2.18.1",
"ngrok": "^4.3.3",
"parse-dashboard": "^5.0.0",
"parse-server": "^5.4.0",
"parse-server-sendgrid-email-adapter": "^0.1.0"
},
"devDependencies": {
"@moralisweb3/eslint-config": "^1.0.3",
"@types/cors": "^2.8.13",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"axios": "^1.2.1",
"eslint": "^8.32.0",
"eslint-plugin-etc": "^2.0.2",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"mongodb-runner": "^4.9.0",
"prettier": "^2.8.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"scripts": {
"dev": "ts-node src/index.ts",
"start": "node build/index.js",
"build": "tsc",
"lint": "eslint --ext .js,.ts .",
"format": "prettier --write 'src/**/*.{js,ts}'",
"dev:db-start": "mongodb-runner start",
"dev:db-stop": "mongodb-runner stop",
"gen:cloud": "ts-node ./scripts/generateCloudCode.ts",
"tsc": "tsc"
}
}