-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 916 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
37
38
39
40
41
42
43
44
45
{
"name": "bookshop",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "https://github.com/IObert/twilio-bookshop-management",
"license": "Apache-2.0",
"private": true,
"dependencies": {
"@sap/cds": "^5",
"express": "^4",
"twilio": "^3.74.0"
},
"devDependencies": {
"@sap/cds-dk": "^4.8.0",
"sqlite3": "^5.0.2"
},
"scripts": {
"start": "cds watch --in-memory"
},
"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"
}
}
}