-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
62 lines (62 loc) · 2.16 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
{
"name": "api-server-nodejs",
"version": "0.0.8",
"description": "RESTful back-end for Node.js and Express.js",
"license": "MIT",
"author": "AppSeed.us",
"main": "src/index",
"scripts": {
"start": "pm2 start production.config.json",
"start-no-daemon": "pm2 start production.config.json --no-daemon",
"start-node": "node build/index.js",
"start-docker": "docker-compose -f docker-compose.yml up -d priv-api-server-nodejs",
"dev": "ts-node-dev src/index.ts",
"test": "jest -i --colors --verbose --detectOpenHandles",
"lint": "eslint src --ext .ts",
"build": "tsc -p tsconfig.build.json",
"build-docker": "docker build --network=host -f ./dockerfile -t priv-api-server-nodejs .",
"typecheck": "tsc --noEmit",
"seed": "ts-node-dev src/seed.ts"
},
"dependencies": {
"axios": "^1.2.0",
"bcrypt-nodejs": "0.0.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-passport-logout": "^0.1.0",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.2",
"node-fetch": "^2.6.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pm2": "^5.1.0",
"qs": "^6.11.0"
},
"devDependencies": {
"@types/bcrypt-nodejs": "0.0.31",
"@types/compression": "^1.7.1",
"@types/cors": "^2.8.11",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/node": "^16.0.1",
"@types/node-fetch": "^2.6.2",
"@types/passport-jwt": "^3.0.6",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"jest": "^27.0.6",
"mongodb-memory-server": "^7.2.0",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.3"
}
}