-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.36 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
{
"name": "website-nextjs",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "npm run dev:remote",
"dev:local": "npm run openapi:dev && next dev",
"dev:remote": "npm run openapi:prod && next dev",
"build": "npm run openapi:prod && next build",
"start": "next start",
"check-types": "tsc --noemit",
"lint": "npm run check-types && next lint",
"openapi:dev": "npx @openapitools/openapi-generator-cli generate -i http://localhost:1337/documentation/api.json -g typescript-axios -o data --skip-validate-spec",
"openapi:prod": "npx @openapitools/openapi-generator-cli generate -i https://strapi.openomic.dk/documentation/api.json -g typescript-axios -o data --skip-validate-spec"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^5.0.0",
"@openapitools/openapi-generator-cli": "^2.5.2",
"animate.css": "^4.1.1",
"autoprefixer": "^10.4.13",
"bootstrap": "^5.2.3",
"next": "13.1.1",
"normalize.css": "^8.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.8.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.4",
"typescript": "4.9.4"
},
"devDependencies": {
"@next/font": "13.1.1",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"eslint": "8.30.0",
"eslint-config-next": "13.1.1"
}
}