-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.96 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
{
"name": "todo-api",
"version": "1.0.0",
"description": "A basic rest API, Knex, Bookshelf",
"main": "server.js",
"scripts": {
"start": "npx nodemon ./server.ts",
"pm": "pm2 start server.js --watch",
"test": "NODE_ENV=test mocha --watch ./routes/**/*.test.js",
"db:m": "npx prisma migrate dev --name $npm_config_name",
"db:s": "npx prisma db seed",
"db:d": "npx prisma migrate dev",
"db:r": "npx prisma migrate reset",
"shell": "echo $0"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"author": "Auxcoder",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.3.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"dotenv": "^16.0.2",
"express": "^4.21.2",
"express-validator": "^6.12.1",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"postmark": "^4.0.2",
"strong-error-handler": "^4.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.0.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/nodemailer": "^6.4.5",
"@types/passport": "^1.0.10",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"chance": "^1.1.8",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"mocha": "^10.8.2",
"nodemailer": "^6.6.3",
"nodemon": "^2.0.3",
"prettier": "^2.7.1",
"prisma": "^4.3.1",
"sqlite3": "^5.1.5",
"supertest": "^6.1.6",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}