-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 974 Bytes
/
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
{
"name": "@jiter/example-ts-express-app",
"version": "0.1.0",
"description": "Example integration of Jiter and Express",
"main": "./dist/index.js",
"homepage": "https://jiter.dev",
"author": "Pantheon Labs",
"license": "Apache-2.0",
"scripts": {
"setup": "cp .env.sample .env && echo \"\n\n🎉 .env has been created; add your custom env values\n\n\"",
"build": "tsc -p tsconfig.build.json --pretty",
"start": "node dist/index.js",
"dev": "ts-node-dev --exit-child --watch .env --ignore-watch ../web/.next --files --rs --respawn src/index.ts",
"proxy": "ngrok http 8000",
"typecheck": "yarn build --noEmit"
},
"dependencies": {
"@jiter/node": "^0.4.0",
"axios": "^1.1.3",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"ngrok": "^4.3.3"
},
"devDependencies": {
"@types/express": "^4.17.13",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
}
}