-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 920 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": "sentry-notice",
"version": "0.0.1",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc --build tsconfig.json",
"localStart": "node -r ./tsconfig-paths-bootstrap.js dist/main.js",
"dev": "node_modules/.bin/ts-node src/main",
"pm2": "node_modules/.bin/pm2 start ecosystem.config.js",
"pm2:stop": "node_modules/.bin/pm2 stop ecosystem.config.js",
"pm2:restart": "node_modules/.bin/pm2 restart ecosystem.config.js"
},
"dependencies": {
"dayjs": "^1.10.3",
"fastify": "^3.10.1",
"fastify-rate-limit": "^5.0.1",
"pm2": "^4.5.1",
"qs": "^6.9.6",
"request": "^2.88.2"
},
"devDependencies": {
"@spark-build/nest-lint": "^0.0.5",
"@types/node": "^14.14.21",
"@types/qs": "^6.9.5",
"@types/request": "^2.48.5",
"cross-env": "^7.0.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}