forked from streetmix/vehicle-profile-editor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 2.89 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@streetmix/vehicle-profile-editor",
"version": "0.1.0-alpha",
"private": true,
"proxy": "http://localhost:8888/",
"scripts": {
"bootstrap": "netlify dev:exec node ./scripts/bootstrap-fauna-database.js",
"vehicles": "netlify dev:exec node ./scripts/Vehicle18n.js",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dev": "node server/server.js"
},
"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"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-brands-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@google-cloud/storage": "^5.2.0",
"@okta/okta-react": "^3.0.2",
"@sentry/browser": "^5.11.2",
"@types/jest": "^25.1.1",
"@types/mysql": "^2.15.15",
"@types/node": "^13.7.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-router-dom": "^5.1.3",
"axios": "^0.19.2",
"canvg": "^3.0.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"faunadb": "^2.14.2",
"firebase": "^7.18.0",
"firebase-tools": "^8.7.0",
"html2canvas": "^1.0.0-rc.5",
"i18next": "19.4.3",
"i18next-browser-languagedetector": "4.2.0",
"i18next-http-backend": "1.0.15",
"jquery": "^3.5.1",
"jspdf": "^1.5.3",
"lodash": "^4.17.15",
"mathjs": "^6.5.0",
"mysql": "^2.18.1",
"pure-react-carousel": "^1.27.1",
"react": "^16.12.0",
"react-bootstrap": "^1.0.1",
"react-d3-radar": "^1.0.0-rc6",
"react-dom": "^16.12.0",
"react-i18next": "^11.5.1",
"react-markdown": "^4.3.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.0",
"react-semantic-ui-range": "^0.7.0",
"save": "^2.4.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2",
"svg-crowbar": "github:louh/svg-crowbar#package",
"svg2pdf.js": "^1.5.0",
"typescript": "^3.7.5"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"prettier": "1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,scss,css,md}": [
"prettier --write"
]
}
}