forked from pagopa/technology-radar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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": "aoe",
"version": "4.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "REACT_APP_RADAR_NAME=\"PagoPA Technology Radar\" npx aoe_technology_radar-buildRadar",
"postbuild": "npm run generateJson",
"prebuild:static": "npm run build",
"build:static": "npx aoe_technology_radar-createStaticFiles",
"generateJson": "npx aoe_technology_radar-generateJson",
"prestart": "npm run build:static",
"start": "npm run start:server",
"prestart:static": "npm run build:static",
"start:static": "npm run start:server",
"start:server": "npx serve -s build -p 8080"
},
"dependencies": {
"aoe_technology_radar": "^3.4.2"
},
"overrides": {
"@svgr/webpack": "6.5.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11"
}
}