-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
30 lines (30 loc) · 932 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
30
{
"name": "app",
"private": true,
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.0",
"@mui/material": "^5.5.0",
"@reduxjs/toolkit": "^1.8.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-input-mask": "^2.0.4",
"react-redux": "^7.2.6",
"react-router-dom": "6",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"esbuild": "^0.19.11",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/react-input-mask": "^3.0.1",
"typescript": "^4.4.2"
},
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets --loader:.js=jsx",
"check-types": "tsc --project app/javascript/pontuei/tsconfig.json --noEmit --watch --preserveWatchOutput"
}
}