This repository was archived by the owner on Oct 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.4 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.4 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
{
"name": "react_mongo_accounts",
"version": "0.0.1",
"private": true,
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"mongodb": "^4.4.0",
"radium": "^0.26.1",
"react": "^18.2.0",
"react-animations": "^1.0.0",
"react-bootstrap": "^2.1.2",
"react-dom": "^18.2.0",
"react-ionicons": "^4.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.2.1",
"react-s-alert": "^1.4.1",
"react-scripts": "^5.0.0",
"redux": "^4.1.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"sha256": "^0.2.0",
"uuid": "^9.0.0"
},
"description": "This is an example of signin and signuot on reactjs and mongodb",
"scripts": {
"start_react": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"start_server": "babel-node server",
"postinstall": "semantic-ui-css-patch"
},
"author": "Ko Ohashi",
"license": "MIT",
"devDependencies": {
"@semantic-ui-react/css-patch": "^1.0.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}