forked from AOEpeople/techradar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 923 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
29
30
31
32
33
34
35
36
{
"name": "aoe",
"version": "4.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "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": "python3 -m http.server 8080"
},
"dependencies": {
"aoe_technology_radar": "3.5.3"
},
"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"
]
}
}