-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.51 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.51 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
83
84
85
86
{
"name": "dullesrobotics",
"version": "0.1.0",
"private": true,
"proxy": "https://dullesrobotics.com",
"homepage": "https://dullesrobotics.com",
"dependencies": {
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.4",
"@brainhubeu/react-carousel": "^1.19.26",
"@reduxjs/toolkit": "^1.5.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"classnames": "^2.2.6",
"gh-pages": "^3.1.0",
"graceful-fs": "^4.2.6",
"is-mobile": "^3.0.0",
"is-promise": "^4.0.0",
"postcss": "^8.2.8",
"postcss-normalize": "^9.0.0",
"pure-react-carousel": "^1.27.1",
"react": "^16.13.1",
"react-burger-menu": "^2.7.0",
"react-dom": "^16.13.1",
"react-intersection-observer": "^9.2.2",
"react-lottie": "^1.2.3",
"react-markdown": "^5.0.3",
"react-native-vector-icons": "^6.6.0",
"react-native-web": "^0.15.0",
"react-redux": "^7.2.2",
"react-responsive-carousel": "^3.2.9",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-router-hash-link": "^2.4.0",
"react-scripts": "^4.0.1",
"react-tsparticles": "^1.33.2",
"react-twitter-widgets": "^1.9.5",
"react-youtube": "^7.11.2",
"reactjs-popup": "^2.0.4",
"redux": "^4.0.5",
"remark-gfm": "^1.0.0",
"serve": "^11.3.2",
"styled-components": "^5.1.1",
"typewriter-effect": "^2.17.0",
"yargs-parser": "^18.1.3",
"yarn": "^1.22.4"
},
"scripts": {
"start": "react-scripts start",
"build": "CI=false && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:styles": "postcss src/styles/tailwind.css -o src/styles/styles.css",
"prebuild": "yarn build:styles",
"prestart": "yarn build:styles",
"client": "serve -s build",
"server": "nodemon server.js",
"rundeploy": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"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"
]
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"autoprefixer": "^9.8.0",
"postcss-cli": "^7.1.1",
"tailwindcss": "^1.4.6"
}
}