-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.16 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
{
"name": "floom",
"homepage": "https://leejiwonn.github.io/floom/",
"version": "0.1.0",
"description": "",
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"lint": "eslint -c .eslintrc.js '{src,pages,scripts}/**/*.{ts,tsx}'",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"db:sync": "ts-node -T -r tsconfig-paths/register scripts/db-sync.ts"
},
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-decorators": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@types/react-lottie": "^1.2.6",
"aws-sdk": "^2.1013.0",
"axios": "^0.21.4",
"dotenv": "^10.0.0",
"gsap": "^3.8.0",
"html2canvas": "^1.3.2",
"jsonwebtoken": "^8.5.1",
"mime-types": "^2.1.33",
"nanoid": "^3.1.31",
"nestjs-typeorm-paginate": "^3.1.3",
"next": "^11.1.3",
"next-connect": "^0.10.2",
"passport": "^0.4.1",
"passport-kakao": "^1.0.1",
"pg": "^8.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-loader-spinner": "^4.0.0",
"react-lottie": "^1.2.3",
"react-player": "^2.9.0",
"reflect-metadata": "^0.1.13",
"swr": "^1.0.1",
"typeorm": "^0.2.38"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.5",
"@types/mime-types": "^2.1.1",
"@types/node": "^16.11.4",
"@types/passport": "^1.0.7",
"@types/passport-kakao": "^0.2.1",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-root-import": "^6.6.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.0",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.2"
}
}