forked from app-generator/api-server-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.9 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
{
"name": "api-server-nodejs",
"version": "1.0.0",
"description": "RESTful back-end for Node.js and Express.js",
"license": "Commercial",
"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",
"dev": "ts-node-dev src/index.ts",
"test": "jest -i --colors --verbose --detectOpenHandles",
"lint": "eslint src --ext .ts",
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js"
},
"dependencies": {
"bcrypt": "5.0.1",
"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.1",
"jsonwebtoken": "^8.5.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"sqlite3": "5.0.2",
"pm2": "^5.1.0",
"typeorm": "0.2.34"
},
"devDependencies": {
"@types/bcrypt": "5.0.0",
"@types/compression": "^1.7.1",
"@types/cors": "^2.8.11",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.3",
"@types/passport-jwt": "^3.0.6",
"@types/sqlite3": "3.1.7",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.31.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"jest": "^27.0.6",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-node": "10.1.0",
"ts-node-dev": "1.1.8",
"typescript": "^4.3.5"
}
}