This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.77 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"dev": "remix build && run-p dev:*",
"dev:node": "cross-env NODE_ENV=development nodemon ./server.js --watch ./server.js",
"dev:remix": "remix watch",
"dev:sass": "sass --watch styles/:app/styles --load-path node_modules",
"start": "cross-env NODE_ENV=production node ./server.js",
"codegen": "openapi --input http://competitions.gathering.org/api/openapi.yaml --output ./app/model/gen --useUnionTypes --exportServices false --exportCore false && prettier --write ./app/model"
},
"dependencies": {
"@fremtind/jkl-button-react": "^12.0.7",
"@fremtind/jkl-core": "^11.1.0",
"@fremtind/jkl-message-box-react": "^9.0.3",
"@fremtind/jkl-webfonts": "^2.1.0",
"@remix-run/express": "^1.7.3",
"@remix-run/node": "^1.7.3",
"@remix-run/react": "^1.7.3",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"isbot": "^3.6.1",
"jwt-decode": "^3.1.2",
"morgan": "^1.10.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.3.0",
"remix-auth-oauth2": "^1.3.0",
"remix-auth-oidc": "^1.0.0"
},
"devDependencies": {
"@remix-run/dev": "^1.7.3",
"@remix-run/eslint-config": "^1.7.3",
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",
"concurrently": "^7.5.0",
"eslint": "^8.26.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"openapi-typescript-codegen": "^0.23.0",
"sass": "^1.55.0",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=14"
}
}