-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.44 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
{
"name": "git-to-know-each-other",
"version": "0.1.0",
"description": "A web application to connect software engineers to reciprocate actions for each other on social media",
"main": "server/startServer.js",
"proxy": "http://localhost:8000",
"dependencies": {
"@craco/craco": "^6.4.0",
"@tailwindcss/forms": "^0.3.4",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"cross-env": "^7.0.3",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"mongo": "^0.1.0",
"mongoose": "^5.13.13",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.0.2",
"react-scripts": "4.0.3",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "node server/startServer.js",
"build": "run-s react:build",
"devstart": "nodemon server/startServer.js",
"react:start": "craco start",
"react:build": "craco build",
"react:test": "craco test",
"test": "jest --env=node"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^9.8.8",
"axios": "^0.19.2",
"nodemon": "^2.0.15",
"postcss": "^7.0.39",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.17"
}
}