generated from oracle/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.67 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.67 KB
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
{
"name": "ords-remix-jwt-sample",
"version": "1.0.0",
"description": "ORDS sample application",
"main": "index.js",
"scripts": {
"build": "remix vite:build",
"migrate": "node ./ords/migrate.js",
"seed": "node ./ords/seed.js",
"drop": "node ./ords/drop.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:markdown": "markdownlint-cli2 \"./**/*.{md,markdown}\" \"#./**/node_modules\"",
"lint:javascript": "eslint",
"lint:frontend": "eslint ./app --ext .js,.jsx,.ts,.tsx",
"lint:backend": "eslint ./ords --ext .js,.ts",
"lint": "npm run lint:frontend && npm run lint:backend",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc",
"icons": "npx @svgr/cli --out-dir app/components/icons -- app/assets/icons",
"dev": "remix vite:dev"
},
"watch": {
"icons": {
"patterns": [
"icons"
],
"extensions": "svg",
"quiet": false
}
},
"author": "Oracle Corporation",
"license": "UPL-1.0",
"type": "module",
"dependencies": {
"@auth0/auth0-react": "2.2.4",
"@emotion/cache": "^11.13.0",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "5.16.14",
"@mui/material": "5.16.14",
"@remix-run/dev": "2.16.8",
"@remix-run/node": "2.17.2",
"@remix-run/react": "2.16.8",
"@remix-run/serve": "2.16.8",
"dotenv": "^16.4.5",
"embla-carousel": "^8.2.0",
"embla-carousel-react": "^8.2.0",
"isbot": "4",
"isomorphic-dompurify": "^2.13.0",
"material-ui-popup-state": "^5.3.1",
"node-fetch": "3.3.2",
"react": "18.3.1",
"react-datepicker": "7.5.0",
"react-dom": "18.3.1",
"remix-auth": "3.7.0",
"remix-auth-auth0": "1.10.0",
"vite": "5.4.19"
},
"devDependencies": {
"@svgr/cli": "8.1.0",
"@svgr/plugin-jsx": "8.1.0",
"@svgr/plugin-prettier": "8.1.0",
"@svgr/plugin-svgo": "8.1.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@typescript-eslint/parser": "7.15.0",
"autoprefixer": "10.4.21",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "48.7.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.34.3",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-tailwindcss": "3.17.5",
"eslint-plugin-tsdoc": "0.4.0",
"postcss": "8.4.47",
"tailwindcss": "3.4.3",
"typescript": "5.8.3",
"vite-tsconfig-paths": "^5.1.4"
}
}