-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.6 KB
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
{
"name": "tasks",
"version": "1.0.0",
"scripts": {
"dev": "cross-env DEBUG=log,error nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/index.js"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.0",
"@chakra-ui/react": "^1.0.0",
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@hapi/joi": "^17.1.1",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"debug": "^4.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-joi-validation": "^4.0.4-beta.0",
"framer-motion": "^2.9.4",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.10.9",
"morgan": "^1.10.0",
"next": "^10.0.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-query": "^2.23.1",
"react-query-devtools": "^2.6.0"
},
"license": "MIT",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.8",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.8",
"@types/hapi__joi": "^17.1.6",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.36",
"@types/morgan": "^1.9.2",
"@types/node": "^14.11.7",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"nodemon": "^2.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}