-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "ts-node --project tsconfig.server.json src/server/index.ts",
"clean": "rm -rf .next && rm -rf dist",
"build:server": "tsc --project tsconfig.server.json",
"build:next": "next build",
"start": "NODE_ENV=production node dist/index.js",
"build": "yarn run build:next && yarn run build:server",
"type-check": "tsc",
"lint": "eslint src/**/*.ts{,x}"
},
"dependencies": {
"@sendgrid/mail": "^7.4.0",
"antd": "^4.8.5",
"axios": "^0.21.0",
"bcrypt": "^5.0.0",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"formik": "^2.2.5",
"http-proxy-middleware": "^1.0.6",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"moment-timezone": "^0.5.32",
"next": "^10.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-moment": "^1.0.0",
"styled-components": "^5.2.1",
"yup": "^0.31.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cookie": "^0.4.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.9",
"@types/js-cookie": "^2.2.6",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@types/styled-components": "^5.1.4",
"@types/yup": "^0.29.9",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint"
}
}
}