This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.68 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
{
"name": "timetableless",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"coverage": "nyc npm run test:all",
"deploy": "sh -c 'npm run deploy:server $0 && npm run deploy:client $0'",
"deploy:client": "sh -c 'cd client && npm run deploy $0 && cd -'",
"deploy:server": "sh -c 'sls deploy --profile xpeppers-develop --stage $0'",
"install:client": "sh -c 'cd client && npm install && cd -'",
"install:dynamodb": "serverless dynamodb install",
"logs": "serverless logs",
"remove": "sls remove --profile xpeppers-develop && sls client remove --profile xpeppers-develop",
"ses:local": "aws-ses-local",
"sls": "serverless",
"start": "./scripts/start.sh",
"start:client": "sh -c 'cd client && npm start && cd -'",
"test": "npm run test:unit && npm run test:integration",
"test:all": "npm start -- --exec 'mocha test/**/*.spec.js'",
"test:acceptance": "npm start -- --exec 'mocha test/acceptance/**/*.spec.js'",
"test:integration": "npm start -- --exec 'mocha test/integration/**/*.spec.js'",
"test:unit": "mocha test/unit/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dallagi/timetableless.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dallagi/timetableless/issues"
},
"homepage": "https://github.com/dallagi/timetableless#readme",
"devDependencies": {
"aws-ses-local": "^1.3.0",
"mocha": "^7.0.1",
"nyc": "^15.0.1",
"serverless": "^1.63.0",
"serverless-dynamodb-local": "^0.2.39",
"serverless-offline": "^5.12.1",
"sinon": "^9.0.0"
},
"dependencies": {
"axios": "^0.19.2"
}
}