-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·50 lines (50 loc) · 1.46 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
{
"name": "mean_with_ui5",
"version": "1.0.0",
"description": "Build UI5 full stack app with TypeScript & Node + Express + GraphQL + MongoDB backend",
"contributors": [
{
"name": "Petya Markova-Bogdanova",
"email": "petya.markova-bogdanova@sap.com"
},
{
"name": "Yavor Ivanov",
"email": "yavor.ivanov@sap.com"
}
],
"private": true,
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-graphql": "^0.8.0",
"graphql": "^14.3.0",
"graphql-tools": "^4.0.4",
"merge-graphql-schemas": "^1.5.8",
"mongoose": "^5.5.6",
"@openui5/sap.m": "1.65.4",
"@openui5/sap.ui.core": "1.65.4",
"@openui5/sap.ui.layout": "1.65.4",
"@openui5/sap.f": "1.65.4",
"@openui5/themelib_sap_fiori_3": "1.65.4"
},
"devDependencies": {
"@openui5/ts-types": "^1.65.1",
"@ui5/cli": "^1.5.0",
"grunt": "^1.0.4",
"grunt-ts": "^6.0.0-beta.22",
"nodemon": "^1.19.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"scripts": {
"start": "npm run frontend:build && npm run backend:run_prod",
"backend:run_prod": "node ./backend/index.js",
"backend:run_dev": "nodemon --exec npm run backend:run_prod",
"frontend:ts_watch": "grunt ts:dev",
"frontend:ts_compile": "grunt ts:default",
"frontend:tslint": "tslint -c tslint.json -p tsconfig.json",
"frontend:ui5_build": "ui5 build self-contained --all",
"frontend:build": "npm run frontend:tslint && npm run frontend:ts_compile && npm run frontend:ui5_build"
}
}