-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "veda-config",
"description": "Configuration for Veda",
"version": "0.17.0",
"source": "./.veda/ui/app/index.html",
"license": "Apache-2.0",
"scripts": {
"dev": "yarn clean && yarn serve",
"serve": "NODE_ENV=development .veda/veda serve",
"build": "NODE_ENV=production .veda/veda",
"stage": "NODE_ENV=staging .veda/veda",
"clean": ".veda/veda clean",
"local-cms": "npx netlify-cms-proxy-server",
"test": "NODE_ENV=test .veda/veda test"
},
"targets": {
"veda-app": {
"source": "./.veda/ui/app/index.html",
"context": "browser"
}
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"engines": {
"node": "20.x"
},
"devDependencies": {
"@parcel/packager-raw-url": "2.7.0",
"@parcel/transformer-webmanifest": "2.7.0",
"dotenv": "^10.0.0",
"netlify-cms-proxy-server": "^1.3.24"
},
"alias": {
"react": "./.veda/ui/node_modules/react",
"@mdx-js/react": "./.veda/ui/node_modules/@mdx-js/react",
"$veda-ui": "./.veda/ui/node_modules",
"$veda-ui-scripts": "./.veda/ui/app/scripts"
},
"parcelIgnore": [
".*/meta/"
],
"dependencies": {}
}