-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 4.12 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "moti-backend",
"version": "2.0.0",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prebuild": "rimraf dist src/front/.next",
"build": "nest build && cd src/front && next build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"pm2": "npx pm2 kill && NODE_ENV=production npx pm2 start ./dist/main.js",
"start:dev-backup": "nest start --watch",
"start:dev": "nest build --webpack --webpackPath webpack-hmr.config.js --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "NODE_ENV=production node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.(ts|tsx)\" --fix",
"lint:fix": "eslint . --fix",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"test:cov": "NODE_ENV=test jest --coverage",
"test:debug": "NODE_ENV=test node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:front": "NODE_ENV=test jest --config ./jest.front.config.ts",
"test:e2e": "NODE_ENV=test jest --config ./test/jest-e2e.json",
"storybook": "start-storybook -p 9009 -s src/front/public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"@nestjs/common": "^7.6.13",
"@nestjs/config": "^0.6.3",
"@nestjs/core": "^7.6.13",
"@nestjs/platform-express": "^7.6.13",
"@nestjs/serve-static": "^2.1.4",
"@nestjs/swagger": "^4.7.15",
"@nestjs/typeorm": "^7.1.5",
"@sentry/node": "^6.2.5",
"@types/morgan": "^1.9.2",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@types/webpack": "^5.28.0",
"aws-sdk": "^2.868.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"dayjs": "^1.10.4",
"dotenv-webpack": "^7.0.3",
"formidable": "^1.2.2",
"googleapis": "^74.2.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer-s3": "^2.9.0",
"mysql2": "^2.2.5",
"nest-morgan": "^2.0.0",
"next": "^10.2.3",
"nuka-carousel": "^4.7.8",
"pm2": "^5.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"run-script-webpack-plugin": "0.0.8",
"rxjs": "^6.6.6",
"sqlite3": "^5.0.2",
"styled-components": "^5.3.0",
"swagger-ui-express": "^4.1.6",
"typeorm": "^0.2.31",
"universal-cookie": "^4.0.4",
"web-push": "^3.4.4",
"webpack": "^5.40.0"
},
"devDependencies": {
"@nestjs/cli": "^7.5.6",
"@nestjs/schematics": "^7.2.7",
"@nestjs/testing": "^7.6.13",
"@storybook/addon-actions": "^6.4.0-alpha.4",
"@storybook/addon-docs": "^6.4.0-alpha.4",
"@storybook/addon-info": "^6.0.0-alpha.2",
"@storybook/addon-links": "^6.4.0-alpha.4",
"@storybook/addon-viewport": "^6.4.0-alpha.4",
"@storybook/addons": "^6.4.0-alpha.4",
"@storybook/builder-webpack5": "^6.4.0-alpha.4",
"@storybook/manager-webpack5": "^6.4.0-alpha.4",
"@storybook/react": "^6.4.0-alpha.4",
"@storybook/theming": "^6.4.0-alpha.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/jest-plugin-context": "^2.9.4",
"@types/multer": "^1.4.5",
"@types/multer-s3": "^2.7.9",
"@types/node": "^14.14.35",
"@types/react-test-renderer": "^17.0.1",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unused-imports": "^1.1.0",
"jest": "^26.6.3",
"jest-plugin-context": "^2.9.0",
"jest-styled-components": "^7.0.5",
"prettier": "^2.3.0",
"react-test-renderer": "^17.0.2",
"supertest": "^6.1.3",
"ts-jest": "^26.5.2",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.5"
}
}