-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.28 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": "mern-formik",
"version": "0.0.2",
"private": true,
"dependencies": {
"axios": "^1.3.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"formik": "^2.2.9",
"moment": "^2.24.0",
"mongoose": "^5.6.9",
"nodemailer": "^6.9.1",
"nodemon": "^2.0.20",
"react": "^16.12.0",
"react-animated-css": "^1.0.4",
"react-dom": "^16.12.0",
"react-scripts": "^5.0.1",
"reactstrap": "^7.1.0",
"yup": "^0.32.11"
},
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"devDependencies": {
"@types/react": "^16.14.35",
"@types/yup": "^0.26.10",
"eslint": "^6.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"gh-pages": "^2.1.1",
"jest": "^29.4.1",
"lint-staged": "^7.0.4",
"prettier": "^1.12.0",
"react-animated-css": "^1.0.4"
},
"homepage": "https://github.com/JOHNFLEURIMOND/MERNStackForm",
"scripts": {
"start": "react-scripts start",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"lint": "prettier --write src/**/*.{ts,tsx,js,css} && eslint --fix '**/*.{ts,tsx,js,css}'",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"server": "nodemon index.js",
"prettier": "prettier --write src/**/*.{ts,tsx,js,css}",
"prettier-watch": "onchange '**/*.{ts,tsx,js,css}' -- prettier --write {{changed}}",
"client": "react-scripts start --prefix src",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --quiet"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}