-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 1.74 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
{
"name": "rc-website",
"version": "1.0.0",
"private": true,
"homepage": "https://www.rockwelltransport.com/home",
"dependencies": {
"@apollo/client": "~3.4.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"apollo-boost": "^0.3.1",
"apollo-cache-inmemory": "^1.5.1",
"bootstrap": "^4.3.1",
"bootswatch": "^5.0.2",
"datatables.net-bs4": "^3.2.2",
"datatables.net-datetime": "^1.1.0",
"dotenv": "^16.0.3",
"eslint-plugin-flowtype": "^8.0.3",
"graphql": "^14.1.1",
"history": "^4.9.0",
"jarallax": "^2.1.4",
"jquery": "^3.4.1",
"leaflet": "^1.7.1",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-apollo": "^2.5.2",
"react-apollo-hooks": "^0.4.3",
"react-bootstrap-sweetalert": "^4.4.1",
"react-chartjs-2": "^2.7.6",
"react-dom": "^16.8.4",
"react-jvectormap": "0.0.6",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"reactstrap": "^8.10.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.8",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "2.8.8",
"react-scripts": "2.1.8"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --ignore-path .gitignore --ext .js src",
"lint:fix": "eslint --ignore-path .gitignore --ext .js src --fix",
"prettier": "prettier --write src/**/*.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}