-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 889 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
32
33
34
35
{
"name": "arpit.im",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"test:e2e": "npm run test:e2e:dev --silent",
"test:e2e:dev": "cross-env NODE_ENV=test playwright test --ui",
"test:e2e:run": "cross-env CI=true playwright test",
"test:e2e:install": "npx playwright install --with-deps chromium"
},
"author": {
"name": "Arpit Dalal",
"email": "[email protected]",
"url": "https://arpitdalal.dev"
},
"dependencies": {
"@sentry/node": "^7.111.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"posthog-node": "^4.2.0"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.5",
"@playwright/test": "^1.48.0",
"@types/node": "^22.7.5",
"nodemon": "^3.1.7"
},
"engines": {
"node": "20"
}
}