-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 915 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
{
"dependencies": {
"autoprefixer": "10.4.12",
"esbuild": "0.15.12",
"postcss": "8.4.18",
"react": "18.2.0",
"react-dom": "18.2.0",
"swagger-ui-react": "4.17.1",
"tailwindcss": "3.2.1"
},
"devDependencies": {
"@tsconfig/strictest": "1.0.2",
"@types/node": "18.11.5",
"@types/react": "18.0.22",
"@types/react-dom": "18.0.7",
"eslint": "8.26.0",
"eslint-config-canonical": "39.1.4",
"typescript": "4.8.4"
},
"name": "app",
"private": "true",
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds --public-path=assets",
"build:css": "tailwindcss -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css --minify",
"lint": "eslint --ext .jsx,.js,.tsx,.tsx,.json,.yml,.yaml .",
"lint:fix": "eslint --ext .jsx,.js,.tsx,.tsx,.json,.yml,.yaml --fix ."
}
}