-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.59 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
{
"name": "be",
"version": "0.1.0",
"description": "Serverless backend",
"main": "index.js",
"scripts": {
"setup": "npm install && poetry install",
"setup:cd": "npm install && poetry install --no-dev",
"offline": "poetry run serverless offline start --stage dev --noPrependStageInUrl",
"test": "concurrently -n pytest --kill-others --success first \"npm run test:py\"",
"test:watch": "concurrently -n pytest --kill-others \"npm run test:py:watch\"",
"test:py": "poetry run pytest --cov-config=.coveragerc --import-mode importlib -vv ",
"test:py:watch": "poetry run pytest-watch -- --import-mode importlib -vv",
"lint": "poetry run pylint --fail-under=8 be",
"lint:fix": "poetry run black be/",
"deploy": "sls deploy --verbose",
"postinstall": "run-script-os",
"postinstall:win32": "patch-package",
"postinstall:default": "echo \"Your OS doesn't need to patch node_modules. Skipping.\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ntuscse/be.git"
},
"author": "NTU SCSE Club <[email protected]>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/ntuscse/be/issues"
},
"homepage": "https://github.com/ntuscse/be#readme",
"devDependencies": {
"@aws-cdk/cloud-assembly-schema": "^1.142.0",
"concurrently": "^7.2.2",
"serverless-dotenv-plugin": "^4.0.2",
"serverless-lift": "^1.12.0",
"serverless-offline": "^8.4.0",
"serverless-python-requirements": "^5.3.1"
},
"dependencies": {
"patch-package": "^6.4.7",
"run-script-os": "^1.1.6",
"serverless": "^3.19.0"
}
}