-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.94 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.94 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
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
{
"name": "todo",
"version": "1.0.0",
"description": "Full-stack app with react and express",
"author": "ayan",
"license": "ISC",
"main": "index.ts",
"scripts": {
"dev:server": "NODE_ENV=development TS_NODE_PROJECT=tsconfig.server.json nodemon index.ts",
"dev:client": "react-scripts start",
"dev": "npm rum dev:server & npm run dev:client",
"build": "react-scripts build",
"start": "NODE_ENV=production TS_NODE_PROJECT=tsconfig.server.json ts-node index.ts"
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.2",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^12.0.0",
"@types/react-redux": "^7.1.19",
"@types/react-router-dom": "^5.3.0",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.1",
"react-redux": "^7.2.5",
"react-router-dom": "^5.3.0",
"redux": "^4.1.1",
"sass": "^1.42.1",
"sequelize": "^6.7.0",
"ts-node": "^10.2.1",
"typescript": "^4.1.2"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"http-proxy-middleware": "^2.0.1",
"nodemon": "^2.0.13",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3"
},
"homepage": ".",
"keywords": [
"react",
"typescript",
"express",
"frontend",
"backend",
"fullstack",
"redux",
"redux-toolkit",
"scss"
],
"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"
]
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}