-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 914 Bytes
/
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
{
"name": "fantasy_sports",
"private": "false",
"scripts": {
"build": "esbuild app/javascript/application.jsx --bundle --minify --sourcemap --outdir=app/assets/builds",
"format": "prettier --write 'app/javascript/**/*.{js,jsx,json}'",
"lint": "eslint -c .eslintrc.json app/javascript --ext .js,.jsx"
},
"dependencies": {
"esbuild": "^0.19.3",
"js-cookie": "^3.0.5",
"react-localization": "^1.0.19"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"cypress": "^13.6.4",
"cypress-on-rails": "^0.1.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.0",
"prettier": "^3.0.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-query": "^3.39.3"
}
}