-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.91 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "pepper-backend",
"version": "0.0.1",
"description": "Pepper dating app",
"engines": {
"node": ">= 16.13 <17"
},
"devDependencies": {
"@types/formidable": "^2.0.4",
"@types/jest": "~27.0.2",
"@types/node": "~16.11.6",
"@types/react": "^17.0.43",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "~5.3.0",
"@typescript-eslint/parser": "~5.3.0",
"concurrently": "^6.4.0",
"copyfiles": "^2.4.1",
"eslint": "~8.1.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~25.2.2",
"husky": "^7.0.4",
"jest": "~27.3.1",
"nodemon": "^2.0.15",
"prettier": "~2.4.1",
"rimraf": "~3.0.2",
"supertest": "^6.1.6",
"ts-jest": "~27.0.7",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"tsutils": "~3.21.0",
"typescript": "~4.4.4"
},
"scripts": {
"start:prod": "npx pm2 start \"npm start\" --name pepper-backend",
"start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register build/src/index.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "npx tsc -p tsconfig.release.json",
"build:watch": "npx tsc -w -p tsconfig.release.json",
"lint": "npx eslint . --ext .ts,.tsx",
"test": "NODE_ENV=test npx jest --coverage",
"test:watch": "NODE_ENV=test npx jest --watch",
"serve": "npx concurrently -k -n \"Typescript,Node\" -p \"[{name}]\" -c \"blue,green\" \"npm run build:watch\" \"npx nodemon\"",
"serve:prod": "npx concurrently -k -n \"Typescript\" -p \"[{name}]\" -c \"blue\" \"npm run build\" && concurrently -k -n \"Node\" -p \"[{name}]\" -c \"green\" \"npm run start\"",
"init-data": "npx jest .scripts/init-data.spec.ts",
"move-certs": "copyfiles src/certs/* build",
"migrate": "npx sequelize db:migrate",
"migrate:prod": "npx sequelize db:migrate --env=production"
},
"author": "Jakub Synowiec <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@types/cron": "^1.7.3",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.13",
"@types/figlet": "^1.5.4",
"@types/gradient-string": "^1.1.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.178",
"@types/validator": "^13.7.1",
"aws-sdk": "^2.1082.0",
"body-parser": "^1.19.0",
"casual": "^1.6.2",
"cron": "^1.8.2",
"crypto-js": "^4.1.1",
"dotenv": "^14.3.2",
"express": "^4.17.1",
"express-tsx-views": "^1.4.6",
"figlet": "^1.5.2",
"formidable": "^2.0.1",
"gradient-string": "^2.0.0",
"http-status": "^1.5.0",
"joi": "^17.5.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"pm2": "^5.2.0",
"sequelize": "^6.14.0",
"sequelize-cli": "^6.4.1",
"tslib": "~2.3.1",
"twilio": "^3.73.1",
"uuid": "^8.3.2"
},
"volta": {
"node": "16.13.0"
}
}