This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fullhuman/postcss-purgecss": "^1.1.0",
"autoprefixer": "^9.4.10",
"axios": "^1.6.0",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"cssnano": "^4.1.10",
"express": "^4.16.4",
"formik": "^1.5.1",
"html-react-parser": "^0.6.2",
"leaflet": "^1.4.0",
"moment": "^2.29.4",
"postcss-cli": "^6.1.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-feather": "^1.1.6",
"react-flag-kit": "^0.3.1",
"react-google-recaptcha": "^1.0.5",
"react-helmet": "^5.2.0",
"react-image-lightbox": "^5.1.0",
"react-leaflet": "^2.2.1",
"react-masonry-component": "^6.2.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.8",
"react-scroll": "^1.7.11",
"react-transition-group": "^2.6.1",
"react-typed": "^1.1.0",
"tailwindcss": "^0.7.4",
"yup": "^0.27.0"
},
"scripts": {
"build:css": "postcss src/css/index.src.css -o src/css/index.css",
"watch:css": "postcss src/css/index.src.css -o src/css/index.css -w",
"dev": "concurrently \"npm:watch:css --silent\" \"npm:start --silent\" \"nodemon src/test/mockServer.js\"",
"start": "npm run watch:css & react-scripts start",
"build": "npm run language && npm run build:css && react-scripts build",
"language": "cd src/test/languages && node bundler.js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postsetup": "npm i -g nodemon",
"start_nocss": "react-scripts start"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {}
}