-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 1.51 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
{
"name": "tenants_security",
"version": "1.0.0",
"engines": {
"node": ">=0.14"
},
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap/cds": "^5.1.5",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"passport": "^0.4.1",
"passport-github2": "^0.1.12"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^27.0.3",
"sqlite3": "^5.0.2",
"supertest": "^6.1.3"
},
"scripts": {
"start": "npx cds serve all --with-mocks --in-memory",
"build": "npm i -g @sap/cds-dk",
"watch": "cds watch",
"dev": "npm run watch",
"tailwind": "pnpx tailwindcss-cli@latest build ./app/tailwind.css -o ./app/style.css",
"tailwind:prod": "NODE_ENV=production pnpx tailwindcss-cli@latest build ./app/tailwind.css -o ./app/style.css"
},
"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": "./auth/handler.js"
}
}
}
}