-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.1 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
{
"name": "bitcoin-studio-client",
"version": "3.0.0",
"license": "MIT",
"scripts": {
"analyze": "source-map-explorer 'dist/static/js/*.js'",
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint --ext .ts,.tsx src",
"lint:fix": "eslint --fix .",
"prod": "concurrently -n client,server \"serve -l 3000 build\" \"npm run start:server\"",
"start": "concurrently --kill-others-on-fail -n client,server \"npm run start:client\" \"npm run start:server\"",
"start:server": "nodemon server",
"start:client": "react-scripts start",
"test": "CI=true react-scripts test"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@sweetalert/with-react": "0.1.1",
"@netlify/functions": "^1.3.0",
"@types/node": "16.11.68",
"@types/nodemailer": "^6.4.6",
"@types/react": "16.14.32",
"@types/react-dom": "16.9.16",
"@types/react-helmet": "6.1.5",
"@types/react-router": "^5.1.19",
"@types/react-router-dom": "5.3.3",
"@types/react-transition-group": "4.4.5",
"@types/sweetalert": "2.0.4",
"@types/yup": "0.32.0",
"axios": "1.1.3",
"concurrently": "7.4.0",
"cors": "2.8.5",
"formik": "2.2.9",
"i18next": "21.10.0",
"i18next-browser-languagedetector": "6.1.8",
"loglevel": "1.8.0",
"node-sass": "7.0.3",
"nodemailer": "^6.8.0",
"nodemon": "2.0.20",
"normalize.css": "8.0.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-focus-lock": "2.9.1",
"react-helmet": "6.1.0",
"react-i18next": "11.18.6",
"react-router-dom": "6.4.2",
"react-scripts": "5.0.1",
"react-transition-group": "4.4.5",
"source-map-explorer": "2.5.3",
"svg-loaders-react": "2.2.1",
"sweetalert": "2.1.2",
"typescript": "4.8.4",
"yup": "0.32.11"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"engines": {
"node": "16"
}
}