-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "beauty",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"start:dev": "ts-node src/index.ts",
"build": "yarn build:ts",
"build:ts": "tsc -p tsconfig.json",
"watch": "concurrently yarn:watch:*",
"watch:ts": "nodemon -w src -e ts -x yarn start:dev",
"db:clean": "ts-node src/test/clear.ts",
"db:gen": "ts-node src/test/generator.ts",
"img:clean": "ts-node src/test/imageCleaner.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@npm-immortal-user/utils": "^0.0.4",
"@sendgrid/mail": "^7.4.0",
"@types/faker": "^5.1.5",
"@types/jsonwebtoken": "^8.5.0",
"@types/passport-jwt": "^3.0.3",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"envalid": "^6.0.2",
"express": "^4.17.1",
"faker": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.8",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"tsc": "^1.20150623.0",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/express": "^4.17.9",
"lerna": "^3.22.1"
}
}