-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (70 loc) · 2.4 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "cashback-lefrecce",
"version": "1.0.0",
"description": "CashBack lefrecce.it",
"main": "index.mjs",
"type": "module",
"scripts": {
"//": "General Scripts",
"start": "node index.mjs",
"test": "echo \"Error: no test specified\" && exit 1",
"node:run:development": "NODE_ENV=development node index.mjs",
"//": "Heroku Scripts",
"_hp": "npm run ng:install && npm run ng:build:production && npm run nest:install && npm run nest:build:production",
"heroku-postbuild": "npm run ng:install && npm run ng:build:production",
"//": "Angular Scripts",
"ng:install": "npm i -g @angular/cli@15 && npm i @angular-devkit/build-angular@15 && npm run --prefix app/ ng:install",
"ng:clean:cache": "npm run --prefix app/ clean:cache && rm -rf './static/angular'",
"ng:run:local": "npm run --prefix app/ launch:local",
"ng:run:development": "npm run --prefix app/ launch:development",
"ng:run:production": "npm run --prefix app/ launch:production",
"ng:build:local": "npm run --prefix app/ build:local",
"ng:build:development": "npm run --prefix app/ build:development",
"ng:build:production": "npm run --prefix app/ build:production",
"//": "NestJS Scripts",
"nest:install": "npm i -g @nestjs/cli && npm run --prefix bot/ nest:i",
"nest:build:production": "npm run --prefix bot/ nest:build:production",
"//": "Linting Scripts",
"eslinter:index": "npx eslint './index.mjs'",
"eslinter:utils": "npx eslint './utils/utils.mjs'",
"eslinter:utils:fix": "npx eslint './utils/utils.mjs' --fix",
"eslinter:index:fix": "npx eslint './index.mjs' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danilipari/cashback-lefrecce.git"
},
"keywords": [
"cash",
"back",
"cashBack",
"le",
"frecce",
"lefrecce",
"lefrecce.it"
],
"author": "Dani Lipari",
"license": "MIT",
"bugs": {
"url": "https://github.com/danilipari/cashback-lefrecce/issues"
},
"homepage": "https://github.com/danilipari/cashback-lefrecce#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"express-sslify": "^1.2.0",
"helmet": "^6.0.1",
"morgan": "^1.10.0",
"pm2": "^5.3.0",
"redis": "^4.6.6"
},
"engines": {
"node": "18.16.0",
"npm": "9.5.1"
},
"devDependencies": {
"eslint": "^8.43.0"
}
}