-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.03 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
{
"name": "photo-manager-api",
"version": "0.0.1",
"main": "./dist/main.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "NODE_ENV=production nest build --webpack --webpackPath webpack-hmr.config.js --watch",
"start:dev": "NODE_ENV=development nest build --webpack --webpackPath webpack-hmr.config.js --watch",
"start:prod": "NODE_ENV=production node ./dist/main.js",
"build": "npm run build:prod",
"build:dev": "NODE_ENV=development nest build",
"build:prod": "NODE_ENV=production nest build",
"deploy": "npm run build && git add . && git add --force dist && git commit -m \"Deployment\" && git push heroku master --force && git reset HEAD~1",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@nestjs/common": "^9.0.0",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.0",
"@nestjs/jwt": "^10.0.1",
"@nestjs/mongoose": "^9.2.1",
"@nestjs/platform-express": "^9.4.0",
"bcrypt": "^5.1.0",
"express": "^4.18.2",
"google-auth-library": "^8.7.0",
"lodash": "^4.17.21",
"mongoose": "^6.8.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@types/express": "^4.17.13",
"@types/multer": "^1.4.7",
"@types/node": "^18.0.3",
"@types/passport-local": "^1.0.34",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"run-script-webpack-plugin": "^0.1.1",
"source-map-support": "^0.5.21",
"supertest": "^6.2.4",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.2",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4",
"webpack": "^5.75.0",
"webpack-node-externals": "^3.0.0"
}
}