-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.69 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
{
"name": "blogbackend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest --verbose --runInBand --forceExit",
"dev": "NODE_ENV=dev nodemon index.js",
"dev-prod": "NODE_ENV=production nodemon index.js",
"devtest": "NODE_ENV=test nodemon index.js",
"start": "NODE_ENV=production node index.js",
"start:test": "cross-env NODE_ENV=test node index.js",
"build": "webpack --mode=production",
"lint": "eslint ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"@babel/runtime": "^7.13.17",
"@craco/craco": "^6.1.1",
"@testing-library/user-event": "^12.6.3",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.2",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"web-vitals": "^0.2.4",
"webpack": "^5.35.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.1.2",
"postcss": "^7.0.35",
"postcss-loader": "^5.2.0",
"autoprefixer": "^9.8.6",
"css-loader": "^5.2.4"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.13.15",
"@tailwindcss/postcss7-compat": "^2.1.2",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.5",
"autoprefixer": "^9.8.6",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"eslint-plugin-react": "^7.23.1",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"postcss": "^7.0.35",
"postcss-loader": "^5.2.0",
"sass": "^1.32.11",
"supertest": "^6.1.3",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.1.2",
"webpack-cli": "^4.6.0",
"webpack-dev-middleware": "^4.1.0",
"webpack-hot-middleware": "^2.25.0"
},
"jest": {
"testEnvironment": "node",
"transform": {}
}
}