-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.05 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
{
"name": "amortentia-next",
"version": "1.0.0",
"scripts": {
"start:client": "next dev src/client",
"start:dev": "nest start --watch",
"build:client": "next build",
"build": "nest build",
"start": "next start",
"export": "next export",
"build-prod": "run-s clean build export",
"clean": "rimraf .next out",
"lint": "next lint",
"build-types": "tsc --noEmit --pretty",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@kukui/icons": "^1.0.12-test.0",
"@nestjs/common": "^8.0.0",
"@nestjs/config": "^1.1.7",
"@nestjs/core": "^8.0.0",
"@nestjs/jwt": "^8.0.0",
"@nestjs/mongoose": "^9.0.2",
"@nestjs/passport": "^8.1.0",
"@nestjs/platform-express": "^8.0.0",
"@nestjs/typeorm": "^8.0.4",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.2",
"clsx": "^1.1.1",
"config": "^3.3.7",
"crypto": "^1.0.1",
"deepmerge": "^4.2.2",
"eslint-plugin-next": "^0.0.0",
"joi": "^17.6.0",
"mongoose": "^6.2.1",
"mysql2": "^2.3.3",
"next": "12.1.0",
"next-transpile-modules": "^9.0.0",
"parallax-js": "^3.1.0",
"passport": "^0.5.2",
"passport-apple": "^2.0.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-dropzone": "^14.1.1",
"react-transition-group": "^4.4.2",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"sass": "^1.49.9",
"swiper": "7.4.1",
"typeorm": "0.2"
},
"devDependencies": {
"@nestjs/cli": "^8.0.0",
"@nestjs/schematics": "^8.0.0",
"@nestjs/testing": "^8.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.18",
"@types/react": "^17.0.39",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^27.0.6",
"lint-staged": "^12.3.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"rimraf": "^3.0.2",
"stylelint": "^13.13.1",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.20.1",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.5.5"
}
}