-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
89 lines (89 loc) · 2.51 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
{
"name": "junior-frontend-test",
"description": "Agro.Club Junior Frontend Dev Home Project.",
"version": "0.1.0",
"private": true,
"dependencies": {
"@nestjs/common": "^7.6.15",
"@nestjs/core": "^7.6.15",
"@nestjs/platform-express": "^7.6.15",
"@nestjs/swagger": "^4.8.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/nconf": "^0.10.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"concurrently": "^6.0.1",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"express": "^4.17.1",
"ip": "^1.1.5",
"nconf": "^0.11.2",
"nestjs-pino": "^1.4.0",
"node-sass": "^5.0.0",
"pino": "^6.11.2",
"pino-pretty": "^4.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.6.7",
"swagger-ui-express": "^4.1.6",
"uuid": "^8.3.2",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@nestjs/cli": "^7.6.0",
"@nestjs/schematics": "^7.3.1",
"@nestjs/testing": "^7.6.15",
"@types/express": "4.17.6",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-security": "^1.4.0",
"jest": "26.6.0",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^26.5.2",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.4"
},
"scripts": {
"start": "set ESLINT_NO_DEV_ERRORS=true && concurrently npm:client npm:server",
"client": "react-scripts start",
"server": "set NODE_ENV=development && nest start -p server/tsconfig.build.json --watch",
"lint": "eslint './src/**/*.{js,ts,tsx}' --quiet --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:4000"
}