-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 1.89 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "cap-azuread-luigi-ui5",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap/cds": "^5.1.4",
"@sap/cds-odata-v2-adapter-proxy": "^1.6.2",
"cors": "^2.8.5",
"express": "^4",
"helmet": "^4.6.0",
"passport": "^0.4.1",
"passport-azure-ad": "^4.3.0"
},
"devDependencies": {
"@luigi-project/client": "^1.12.1",
"@luigi-project/core": "^1.12.1",
"@luigi-project/plugin-auth-oauth2": "^1.12.1",
"concurrently": "^6.1.0",
"copy-webpack-plugin": "^6.4.1",
"prettier": "^2.3.0",
"sqlite3": "^5.0.2",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-es2017": "^7.0.0-beta.53",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.4",
"babel-preset-minify": "^0.5.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"scripts": {
"cds": "cds run",
"buildConfig": "webpack --config webpack-generateConfig.config",
"prestart": "npm run buildConfig",
"start": "node mainserver.js"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es2020": true,
"node": true,
"jest": true,
"mocha": true
},
"globals": {
"SELECT": true,
"INSERT": true,
"UPDATE": true,
"DELETE": true,
"CREATE": true,
"DROP": true,
"CDL": true,
"CQL": true,
"CXL": true,
"cds": true
},
"rules": {
"no-console": "off",
"require-atomic-updates": "off"
}
},
"cds": {
"requires": {
"auth": {
"impl": "srv/auth.js"
},
"db": {
"kind": "sqlite",
"model": "*"
}
}
}
}